# HG changeset patch # User RhodeCode Admin # Date 2023-07-26 14:14:46 # Node ID c9ec85217d4419f8233c1b7a01ec785446d4bdcd # Parent 02a6282448f169e2cefb0d3da9abd4d135b0d784 makefile: always cleanup build dir diff --git a/Makefile b/Makefile --- 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