Always install static binary on linux amd64

This commit is contained in:
Michiel Borkent 2022-12-09 12:51:33 +01:00
parent 5ac048157a
commit 683752c602

View file

@ -94,7 +94,12 @@ case "$(uname -m)" in
arch="aarch64"
fi
;;
*) arch=amd64;;
*) arch=amd64
# always use static image on linux
if [[ "$platform" == "linux" ]]; then
static_binary="true"
fi
;;
esac
if [[ 10#$vernum -le 10#000002013 ]]; then