From 9687f90cf5b4b3a10ebc56090e101656f8b8d186 Mon Sep 17 00:00:00 2001 From: mappu Date: Sun, 29 Oct 2017 13:29:12 +1300 Subject: [PATCH] build: use simpler cleanup target --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index dc779e2..07695ee 100644 --- a/Makefile +++ b/Makefile @@ -25,9 +25,9 @@ dist: \ _dist/yatwiki-$(VERSION)-src.zip clean: - if [ -f ./staticResources.go ] ; then rm ./staticResources.go ; fi - if [ -d ./build ] ; then rm -r ./build ; fi - if [ -f ./yatwiki ] ; then rm ./yatwiki ; fi + rm -f ./staticResources.go + rm -fr ./build + rm -f ./yatwiki # # Generated files