Skip to content

Commit

Permalink
Use agave prefix in scripts for pre-installed binaries (solana-labs#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarry authored Mar 8, 2024
1 parent 7a8e29d commit 68be105
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion multinode-demo/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ if [[ -n $USE_INSTALL || ! -f "$SOLANA_ROOT"/Cargo.toml ]]; then
if [[ -z $program ]]; then
printf "solana"
else
printf "solana-%s" "$program"
if [[ $program == "validator" || $program == "ledger-tool" || $program == "watchtower" || $program == "install" ]]; then
printf "agave-%s" "$program"
else
printf "solana-%s" "$program"
fi
fi
}
else
Expand Down

0 comments on commit 68be105

Please sign in to comment.