From 3082b748801a27b3495f2a68938f58519c5a6988 Mon Sep 17 00:00:00 2001 From: RhodeCode Admin Date: Wed, 26 Jul 2023 16:14:46 +0200 Subject: [PATCH] makefile: always cleanup build dir --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9f7ed184..fec82423 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ GRUNT=./node_binaries/grunt clean: make test-clean find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';' - + find . -type d -name "build" -prune -exec rm -rf '{}' ';' .PHONY: test ## run test-clean and tests