diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2021-08-05 20:30:46 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2021-08-05 20:30:46 +0100 |
commit | fa6ce07fbcf4fc784b25efb74f9e099104fea0d5 (patch) | |
tree | d11000e8fe92a597eabc7dabe165421ed2fc153d | |
parent | 8c58e5683cbd90d529eb1ea86fce019e553b2248 (diff) | |
download | pack-fa6ce07fbcf4fc784b25efb74f9e099104fea0d5.tar.gz pack-fa6ce07fbcf4fc784b25efb74f9e099104fea0d5.tar.xz pack-fa6ce07fbcf4fc784b25efb74f9e099104fea0d5.zip |
clean: fix all the non-redo-targets bugs
-rwxr-xr-x | clean | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |