Skip to content

Commit 68be105

Browse files
authored
Use agave prefix in scripts for pre-installed binaries (solana-labs#155)
1 parent 7a8e29d commit 68be105

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

multinode-demo/common.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ if [[ -n $USE_INSTALL || ! -f "$SOLANA_ROOT"/Cargo.toml ]]; then
3030
if [[ -z $program ]]; then
3131
printf "solana"
3232
else
33-
printf "solana-%s" "$program"
33+
if [[ $program == "validator" || $program == "ledger-tool" || $program == "watchtower" || $program == "install" ]]; then
34+
printf "agave-%s" "$program"
35+
else
36+
printf "solana-%s" "$program"
37+
fi
3438
fi
3539
}
3640
else

0 commit comments

Comments
 (0)