summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-09-21 10:28:44 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-09-21 10:28:44 +0200
commit70d33474ae169d6ef937eb65e3fedae9398152bf (patch)
tree58a177eb20556ec90e6f3429eeadbb08d0d5e936
parent3d9b428a151b70a4b88e73a51f5b86a3442862bd (diff)
Properly cleanup data
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f867cfa..b937062 100644
--- a/Makefile
+++ b/Makefile
@@ -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