From 669f41b6cc4e68d63ee1817e6e3df54c3d8fb7cb Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 7 Jul 2023 09:44:38 +0200 Subject: make clean: now more robust --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c9aa946..48d4210 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,7 @@ install: all clean: ls -A | \ grep "^\($(shell sed 's|\.|\\.|; s|\*|.*|; s|$$|\\|' .gitignore | tr '\n' '\|')\)\$$" | \ - xargs -r rm + xargs -r rm -rf --one-file-system dist: clean git status --porcelain 2> /dev/null | grep -q "\S" && (git add .; git commit -m"neue Version: $(VERSION)") || true -- cgit v1.2.3-54-g00ecf