ソースを参照

Makefileadaption for proper status output

master
Dirk Alders 1年前
コミット
9fc738e99e
1個のファイルの変更4行の追加3行の削除
  1. 4
    3
      scripts/Makefile

+ 4
- 3
scripts/Makefile ファイルの表示

@@ -37,12 +37,13 @@ venv3:
37 37
 	venv3/bin/pip install -r requirements.txt
38 38
 
39 39
 clean: venv3
40
-	@echo "\033[1;33mCleaning up unittest...\e[0m"
41
-	@echo "\e[1m  * Testresults from last testrun\e[0m"
40
+	@echo -e "\033[1;33mCleaning up unittest...\e[0m"
41
+	@echo -e "\e[1m  * Testresults from last testrun\e[0m"
42 42
 	@ls testresults | xargs -i echo "    testresults/{}"
43 43
 	@ls testresults | xargs -i rm -f "testresults/{}"
44
-	@echo "\e[1m  * Collected coverage information\e[0m"
44
+	@echo -e "\e[1m  * Collected coverage information\e[0m"
45 45
 	@$(COV3_CMD) erase
46
+	@rm -r venv3
46 47
 
47 48
 cleanall: clean
48 49
 	@echo "\e[1m  * Virtualenv\e[0m"

読み込み中…
キャンセル
保存