From fa6ce07fbcf4fc784b25efb74f9e099104fea0d5 Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Thu, 5 Aug 2021 20:30:46 +0100 Subject: clean: fix all the non-redo-targets bugs --- clean | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clean b/clean index 5d6fc0d..930d2b6 100755 --- a/clean +++ b/clean @@ -2,7 +2,7 @@ if command -v redo-targets >/dev/null 2>&1; then redo-targets | tr '\n' '\0' | xargs -r0 rm -f else - find . -type f \( -o -name '*.o' -o -name '*.inc' -o '*.tool' \) \ + find . -type f \( -name '*.o' -o -name '*.inc' -o -name '*.tool' \) \ -exec rm -f {} + - rm -f .vars.rc all compile_flags.txt libpack.so test test_gen + rm -f .vars.rc all compile_flags.txt libpack test test_gen fi -- cgit v1.2.3-54-g00ecf