diff options
author | 2018-01-26 11:29:21 -0800 | |
---|---|---|
committer | 2018-01-26 12:16:28 -0800 | |
commit | 56e2384f0e6d7bdb3ef9d0670770a70bd6cc85a9 (patch) | |
tree | c425c96f9168c835108c5177664e1d56cdb71d1c /tools | |
parent | 52391111e34816ee13bf4be73f8815dbb2a74407 (diff) |
Fix remote_host_build.sh to pass shellcheck
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/performance/remote_host_build.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/performance/remote_host_build.sh b/tools/run_tests/performance/remote_host_build.sh index 75352e9220..862bd6c05f 100755 --- a/tools/run_tests/performance/remote_host_build.sh +++ b/tools/run_tests/performance/remote_host_build.sh @@ -15,7 +15,8 @@ set -ex -cd $(dirname $0)/../../.. +cd "$(dirname "$0")/../../.." # execute the build script remotely +# shellcheck disable=SC2029 ssh "${USER_AT_HOST}" "CONFIG=${CONFIG} ~/performance_workspace/grpc/tools/run_tests/performance/build_performance.sh $*" |