Skip to content

Commit d8bf0e3

Browse files
committed
tools: add double-quotes to make-v8.sh
This is not being flagged in CI because (I'm guessing) shellcheck in CI is 0.7.0 but latest is 0.8.0.
1 parent 0132db0 commit d8bf0e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/make-v8.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if [ "$ARCH" = "s390x" ] || [ "$ARCH" = "ppc64le" ]; then
1717
fi
1818
# set paths manually for now to use locally installed gn
1919
export BUILD_TOOLS=/home/iojs/build-tools
20-
export LD_LIBRARY_PATH=$BUILD_TOOLS:$LD_LIBRARY_PATH
20+
export LD_LIBRARY_PATH="$BUILD_TOOLS:$LD_LIBRARY_PATH"
2121
# Avoid linking to ccache symbolic links as ccache decides which
2222
# binary to run based on the name of the link (we always name them gcc/g++).
2323
# shellcheck disable=SC2154
@@ -28,7 +28,7 @@ if [ "$ARCH" = "s390x" ] || [ "$ARCH" = "ppc64le" ]; then
2828
rm -f "$BUILD_TOOLS/gcc"
2929
ln -s "$CXX_PATH" "$BUILD_TOOLS/g++"
3030
ln -s "$CC_PATH" "$BUILD_TOOLS/gcc"
31-
export PATH=$BUILD_TOOLS:$PATH
31+
export PATH="$BUILD_TOOLS:$PATH"
3232

3333
g++ --version
3434
gcc --version

0 commit comments

Comments
 (0)