Restore OS -> TARGET map

This commit is contained in:
Michael Vines
2019-06-07 13:22:40 -07:00
parent 002fbc4d53
commit b55927370b

View File

@ -18,6 +18,21 @@ if [[ ! -f update_manifest_keypair.json ]]; then
"$SOLANA_ROOT"/scripts/solana-install-update-manifest-keypair.sh "$OS"
fi
case "$OS" in
osx)
TARGET=x86_64-apple-darwin
;;
linux)
TARGET=x86_64-unknown-linux-gnu
;;
windows)
TARGET=x86_64-pc-windows-msvc
;;
*)
TARGET=unknown-unknown-unknown
;;
esac
case $URL in
edge|beta)
URL=http://$URL.testnet.solana.com:8899