Commit browse files
Message
Changed Files (1)
-
modified scripts/release.sh
diff --git a/scripts/release.sh b/scripts/release.sh index 1f5d73f..174da33 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -44,6 +44,9 @@ fi # Strip optional "v" prefix so the rest of the script can safely prepend it. VERSION="${VERSION#v}" +# Ensure native aarch64-musl cross-compiler linker is available. +export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER="aarch64-linux-musl-gcc" + read -rp "Release v${VERSION}? [y/N] " CONFIRM if [[ "$CONFIRM" != "y" && "$CONFIRM" != "Y" ]]; then echo "Aborted."