aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/performance
diff options
context:
space:
mode:
authorGravatar Mehrdad Afshari <mmx@google.com>2018-01-26 11:29:21 -0800
committerGravatar Mehrdad Afshari <mmx@google.com>2018-01-26 12:16:28 -0800
commit56e2384f0e6d7bdb3ef9d0670770a70bd6cc85a9 (patch)
treec425c96f9168c835108c5177664e1d56cdb71d1c /tools/run_tests/performance
parent52391111e34816ee13bf4be73f8815dbb2a74407 (diff)
Fix remote_host_build.sh to pass shellcheck
Diffstat (limited to 'tools/run_tests/performance')
-rwxr-xr-xtools/run_tests/performance/remote_host_build.sh3
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 $*"