Skip to content

Commit

Permalink
fix error from the agave-ledger-tool rename
Browse files Browse the repository at this point in the history
  • Loading branch information
nibty committed Dec 31, 2024
1 parent b6ca8f2 commit 08fa202
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions multinode-demo/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ if [[ -n $USE_INSTALL || ! -f "$SOLANA_ROOT"/Cargo.toml ]]; then
if [[ -z $program ]]; then
printf "solana"
else
if [[ $program == "validator" ]]; then
if [[ $program == "validator" || $program == "ledger-tool" ]]; then
printf "tachyon-%s" "$program"
elif [[ $program == "ledger-tool" || $program == "watchtower" || $program == "install" ]]; then
elif [[ $program == "watchtower" || $program == "install" ]]; then
printf "agave-%s" "$program"
else
printf "solana-%s" "$program"
Expand All @@ -46,9 +46,9 @@ else
if [[ -z $program ]]; then
crate="cli"
program="solana"
elif [[ $program == "validator" ]]; then
elif [[ $program == "validator" || $program == "ledger-tool" ]]; then
program="tachyon-$program"
elif [[ $program == "ledger-tool" || $program == "watchtower" || $program == "install" ]]; then
elif [[ $program == "watchtower" || $program == "install" ]]; then
program="agave-$program"
else
program="solana-$program"
Expand Down

0 comments on commit 08fa202

Please sign in to comment.