We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
soar
1 parent e67746f commit 7078034Copy full SHA for 7078034
1 file changed
modules/soar/soar.sh
@@ -6,9 +6,7 @@ set -euo pipefail
6
echo "Downloading & installing 'soar' package manager"
7
REPO="pkgforge/soar"
8
LATEST_VER="$(basename $(curl -fLsS --retry 5 -o /dev/null -w '%{url_effective}' https://github.com/${REPO}/releases/latest))"
9
-# Assuming that ARM64 custom images will be built from ARM64 runners for this working detection
10
-ARCH="$(uname -m)"
11
-curl -fLsS --retry 5 --create-dirs "https://github.com/${REPO}/releases/download/${LATEST_VER}/soar-${ARCH}-linux" -o "/usr/bin/soar"
+curl -fLsS --retry 5 --create-dirs "https://github.com/${REPO}/releases/download/${LATEST_VER}/soar-${OS_ARCH}-linux" -o "/usr/bin/soar"
12
chmod +x "/usr/bin/soar"
13
14
# Configuration values for package auto-upgrades (using upgrade term here from brew)
0 commit comments