Skip to content

Commit

Permalink
Fix escaping in wait-for-stake automation_utils function (solana-labs…
Browse files Browse the repository at this point in the history
  • Loading branch information
sakridge authored Nov 21, 2020
1 parent c1eb350 commit 0ec8069
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion system-test/automation_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ function wait_for_bootstrap_validator_stake_drop {
loadConfigFile

# shellcheck disable=SC2154
ssh "${sshOptions[@]}" "${validatorIpList[0]}" '$HOME/.cargo/bin/solana wait-for-max-stake $max_stake --url http://127.0.0.1:8899'
# shellcheck disable=SC2029
ssh "${sshOptions[@]}" "${validatorIpList[0]}" "\$HOME/.cargo/bin/solana wait-for-max-stake $max_stake --url http://127.0.0.1:8899"
}

function get_slot {
Expand Down

0 comments on commit 0ec8069

Please sign in to comment.