summaryrefslogtreecommitdiff
path: root/tcwg-update-tested.sh
diff options
context:
space:
mode:
authorDavid Spickett <david.spickett@linaro.org>2020-04-21 16:06:08 +0100
committerDavid Spickett <david.spickett@linaro.org>2020-04-22 13:53:59 +0100
commit2382c087b5f0d51a4556c8c62f4723ab5a0ab7c9 (patch)
tree70c781a3087d886dc08a92767b6754991858fd7b /tcwg-update-tested.sh
parent7dac1306e35858ef6485a0abf6222f6e13a28ee0 (diff)
Various shellcheck warning fixes
First round of low hanging fruit from the files with the fewest warnings. Change-Id: I60ad57b5bfb2f0be9bb6506252c820f44d055200
Diffstat (limited to 'tcwg-update-tested.sh')
-rwxr-xr-xtcwg-update-tested.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tcwg-update-tested.sh b/tcwg-update-tested.sh
index a68cabc8..26d75065 100755
--- a/tcwg-update-tested.sh
+++ b/tcwg-update-tested.sh
@@ -2,7 +2,7 @@
set -ef -o pipefail
-. $(dirname $0)/jenkins-helpers.sh
+. "$(dirname $0)"/jenkins-helpers.sh
convert_args_to_variables "$@"
# Make shellcheck happy and workaround Jenkins not defining variables
@@ -43,6 +43,6 @@ if [ x"$(git diff HEAD $GIT_COMMIT_2 | wc -l)" != x"0" ]; then
rm -rf .git/rebase-merge
# Submit review against tcwg-llvmprod branch
git review -y tcwg-tested
- ssh -p29418 review.linaro.org gerrit review --code-review 2 --submit $(git rev-parse HEAD)
+ ssh -p29418 review.linaro.org gerrit review --code-review 2 --submit "$(git rev-parse HEAD)"
fi
popd