From 0ec8069348996fd169aa2735534741cf185fc390 Mon Sep 17 00:00:00 2001 From: sakridge Date: Fri, 20 Nov 2020 18:55:09 -0800 Subject: [PATCH] Fix escaping in wait-for-stake automation_utils function (#13743) --- system-test/automation_utils.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/system-test/automation_utils.sh b/system-test/automation_utils.sh index b9d6bc8077..e6895ba026 100755 --- a/system-test/automation_utils.sh +++ b/system-test/automation_utils.sh @@ -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 {