-
Notifications
You must be signed in to change notification settings - Fork 950
Closed
Description
In the release assets, the .zip file currently contains many sbtn
native launchers, but the one for macOS and aarch64 is missing.
Would it be possible to build such native launchers, and to add them to the release assets?
We would also need to support that combination ("$OSTYPE" == "darwin"
and "$arch" == "aarch64"
) here:
if [[ "$OSTYPE" == "linux-gnu"* ]]; then | |
arch=$(uname -m) | |
if [[ "$arch" == "aarch64" ]] || [[ "$arch" == "x86_64" ]]; then | |
archive_target="$p/sbtn-${arch}-pc-linux-${sbtn_v}.tar.gz" | |
url="https://github.com/sbt/sbtn-dist/releases/download/v${sbtn_v}/sbtn-${arch}-pc-linux-${sbtn_v}.tar.gz" | |
else | |
echoerr "sbtn is not supported on $arch" | |
exit 2 | |
fi | |
elif [[ "$OSTYPE" == "darwin"* ]]; then | |
archive_target="$p/sbtn-x86_64-apple-darwin-${sbtn_v}.tar.gz" | |
url="https://github.com/sbt/sbtn-dist/releases/download/v${sbtn_v}/sbtn-x86_64-apple-darwin-${sbtn_v}.tar.gz" | |
elif [[ "$OSTYPE" == "cygwin" ]] || [[ "$OSTYPE" == "msys" ]] || [[ "$OSTYPE" == "win32" ]]; then | |
target="$p/sbtn.exe" | |
archive_target="$p/sbtn-x86_64-pc-win32-${sbtn_v}.zip" | |
url="https://github.com/sbt/sbtn-dist/releases/download/v${sbtn_v}/sbtn-x86_64-pc-win32-${sbtn_v}.zip" | |
else | |
echoerr "sbtn is not supported on $OSTYPE" | |
exit 2 | |
fi |
Metadata
Metadata
Assignees
Labels
No labels