From 3ffec87d926d425f4e2d0e48fdadd10ebe4c7e30 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sun, 20 Oct 2024 17:16:17 +0200 Subject: Align backslashes --- GNUmakefile | 19 ++++++++++--------- 1 file 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 -- cgit v1.2.3