From 4c89fdb9b9841dfef87ef17cfadc11a8e8ce8361 Mon Sep 17 00:00:00 2001 From: Justin Traglia Date: Tue, 22 Mar 2022 15:05:56 -0500 Subject: [PATCH] Fix indententation for one line in the Makefile Real minor fix. Rule lines should start with a single tab, not spaces. Vim clearly pointed this out by marking the entire line as red. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7de4cec2a0..0016808144 100644 --- a/Makefile +++ b/Makefile @@ -68,7 +68,7 @@ partial_clean: clean: partial_clean rm -rf venv - # legacy cleanup. The pyspec venv should be located at the repository root + # legacy cleanup. The pyspec venv should be located at the repository root rm -rf $(PY_SPEC_DIR)/venv rm -rf $(DEPOSIT_CONTRACT_COMPILER_DIR)/venv rm -rf $(DEPOSIT_CONTRACT_TESTER_DIR)/venv