diff options
| author | Joe Carstairs <me@joeac.net> | 2026-07-03 11:19:01 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-07-03 11:19:01 +0100 |
| commit | 89280d60878b481bf3aa9b0ec1dfee1ac8cc83dd (patch) | |
| tree | 80f34f23b44067cac341b4996fe7f9e520a08feb /install.sh | |
| parent | cb3ad780b19aab351d8a582c81f983ac7b51b578 (diff) | |
install.sh: wget to /usr requires doas
Diffstat (limited to 'install.sh')
| -rw-r--r-- | install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ fi 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} + doas wget -O /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_${YQ_PLATFORM} doas chmod +x /usr/local/bin/yq fi @@ -24,7 +24,7 @@ then if [ "$(arch)" = "x86_64" ] || [ "$(arch)" = "arm64" ] then ENVSUBST_VERSION=1.4.3 - wget -O /usr/local/bin/envsubst https://github.com/a8m/envsubst/releases/download/v${ENVSUBST_VERSION}/envsubst-Linux-$(arch) + doas wget -O /usr/local/bin/envsubst https://github.com/a8m/envsubst/releases/download/v${ENVSUBST_VERSION}/envsubst-Linux-$(arch) doas chmod +x /usr/local/bin/envsubst else doas apk add go |
