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 and willhickey committed Mar 9, 2024
1 parent d5ffeef commit 3cba072
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 3cba072

Please sign in to comment.