summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-07-03 11:04:37 +0100
committerJoe Carstairs <me@joeac.net>2026-07-03 11:04:37 +0100
commite6c011d00770d63e6015e5ce645c523b62526772 (patch)
treef023bc5e46ea0b836526a61947b2cf33b15b7f61
parentba8aaa4aded3adf6f80557bde9f18612e2c21deb (diff)
removes extraneous " in install.sh
-rw-r--r--install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index b47ee8f..9e5ff81 100644
--- a/install.sh
+++ b/install.sh
@@ -12,7 +12,7 @@ then
doas apk add podman-compose
fi
-if [ -z "$(which yq 2>/dev/null")" ]
+if [ -z "$(which yq 2>/dev/null)" ]
then
YQ_PLATFORM="linux_$(expr "$(arch)" : "armv7" && echo arm || expr "$(arch)" : "x86_64" && echo amd64 || arch)"
wget -O /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_${YQ_PLATFORM}