git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormail_redacted_for_web 2025-07-22 08:32:57 +0200
committermail_redacted_for_web 2025-07-22 08:32:57 +0200
commitb59e191e8425bdeff2d2dd23cf7be653185756db (patch)
tree93d6f55801c73e083cafd1f3abadcccad04f499e
parentfde8ca70959e713298b01c89338586e8ae129490 (diff)
downloadforgejo-lirion-b59e191e8425bdeff2d2dd23cf7be653185756db.tar.bz2
fix: curly brace expansion doesn't work everywhereHEADmaster
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 68097a5..217d729 100644
--- a/Makefile
+++ b/Makefile
@@ -4,11 +4,11 @@ FJVER := 11.0.2
dirs: dirs-amd64 dirs-arm-6 dirs-arm64
dirs-amd64:
- @install -dvm0755 fs/{,amd64,amd64/usr,amd64/usr/bin}
+ @install -dvm0755 fs fs/amd64 fs/amd64/usr fs/amd64/usr/bin
dirs-arm-6:
- @install -dvm0755 fs/{,arm-6,arm-6/usr,arm-6/usr/bin}
+ @install -dvm0755 fs fs/arm-6 fs/arm-6/usr fs/arm-6/usr/bin
dirs-arm64:
- @install -dvm0755 fs/{,arm64,arm64/usr,arm64/usr/bin}
+ @install -dvm0755 fs fs/arm64 fs/arm64/usr fs/arm64/usr/bin
download: dirs dl-amd64 dl-arm-6 dl-arm64