We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcc9b27 commit c6195f1Copy full SHA for c6195f1
ci/solana-version.sh
@@ -14,7 +14,9 @@
14
if [[ -n $SOLANA_VERSION ]]; then
15
solana_version="$SOLANA_VERSION"
16
else
17
- solana_version=v1.16.20
+ # we use 1.16.20 for sdk but this version has been deleted from the solana servers so we use
18
+ # this version's CLI instead
19
+ solana_version=v1.17.34
20
fi
21
22
export solana_version="$solana_version"
@@ -23,7 +25,7 @@ export PATH="$HOME"/.local/share/solana/install/active_release/bin:"$PATH"
23
25
if [[ -n $1 ]]; then
24
26
case $1 in
27
install)
- sh -c "$(curl -sSfL https://release.solana.com/$solana_version/install)"
28
+ sh -c "$(curl -sSfL https://release.anza.xyz/$solana_version/install)"
29
solana --version
30
;;
31
*)
0 commit comments