summaryrefslogtreecommitdiff
path: root/tcwg-dev-build.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-dev-build.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-dev-build.sh')
-rwxr-xr-xtcwg-dev-build.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/tcwg-dev-build.sh b/tcwg-dev-build.sh
index ff4afacc..d37732a7 100755
--- a/tcwg-dev-build.sh
+++ b/tcwg-dev-build.sh
@@ -34,13 +34,14 @@ if [ x"$target" = x"native" ]; then
manifest_validation_opt="--manifest_validation false"
fi
+# shellcheck disable=SC2154
$scripts/MakeRelease.job \
- --abedir `pwd`/abe \
- --artifacts_top `pwd`/artifacts \
+ --abedir "$(pwd)"/abe \
+ --artifacts_top "$(pwd)"/artifacts \
--release_name $release_name \
--target $target \
--toolchainconfig $version \
- --workspace `pwd` \
+ --workspace "$(pwd)" \
$manifest_opt \
$manifest_validation_opt \
${binutils:+--binutils "$binutils"} \