From b835332205e6f0d74d2449c38fa77194ef8a2b6b Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Thu, 12 Nov 2015 00:30:49 +0000 Subject: [PATCH] Prevent 'make clean' run twice in a row printing an error --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 36a9666..aeb165d 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ all: cp -r resources output/$(LANG)/ clean: - rm -r output/$(LANG)/* + rm -rf output/$(LANG)/* serve: all ./serve.py $(LANG)