diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-21 10:28:44 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-21 10:28:44 +0200 |
commit | 70d33474ae169d6ef937eb65e3fedae9398152bf (patch) | |
tree | 58a177eb20556ec90e6f3429eeadbb08d0d5e936 /Makefile | |
parent | 3d9b428a151b70a4b88e73a51f5b86a3442862bd (diff) |
Properly cleanup data
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -31,4 +31,10 @@ release: all-i18n tar -cf euro-cash.eu-$$GOOS-$$GOARCH.tar.gz euro-cash.eu data/ static/ clean: - rm -f euro-cash.eu + find . -type f \( \ + -name euro-cash.eu \ + -or -name exttmpl \ + -or -name mfmt \ + -or -name '*.min.css' \ + -or -name '*.tar.gz' \ + \) -delete |