summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-10-20 17:16:17 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-10-20 17:16:17 +0200
commit3ffec87d926d425f4e2d0e48fdadd10ebe4c7e30 (patch)
tree51e90a6cafc7e9e1d2bce24420076bb9d63369eb
parent4abc164fcb8cb3aec2eb343cb1f36001ca6c76bf (diff)
Align backslashes
-rw-r--r--GNUmakefile19
1 files changed, 10 insertions, 9 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 1dccc8e..3c48127 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -30,15 +30,16 @@ watch:
release: all-i18n
[ -n "$$GOOS" -a -n "$$GOARCH" ]
- find data static -type f \
- \( -not -name '*.css' -or -name '*.min.css' \) \
- -exec tar -cf euro-cash.eu-$$GOOS-$$GOARCH.tar.gz euro-cash.eu {} +
+ find data static -type f \( \
+ -not -name '*.css' \
+ -or -name '*.min.css' \
+ \) -exec tar -cf euro-cash.eu-$$GOOS-$$GOARCH.tar.gz euro-cash.eu {} +
clean:
- find . -type f \( \
- -name euro-cash.eu \
- -or -name exttmpl \
- -or -name mfmt \
- -or -name '*.min.css' \
- -or -name '*.tar.gz' \
+ find . -type f \( \
+ -name euro-cash.eu \
+ -or -name exttmpl \
+ -or -name mfmt \
+ -or -name '*.min.css' \
+ -or -name '*.tar.gz' \
\) -delete