Skip to content

Commit 178aa79

Browse files
committed
.ci-coverity-scan-build.sh: Fix two shellcheck notes
The notes were: Double quote to prevent globbing and word splitting. [SC2086] [skip ci]
1 parent aa3fd98 commit 178aa79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci-coverity-scan-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ if [ ! -d $TOOL_BASE ]; then
4646
fi
4747

4848
TOOL_DIR=$(find $TOOL_BASE -type d -name 'cov-analysis*')
49-
export PATH=$TOOL_DIR/bin:$PATH
49+
export PATH="$TOOL_DIR/bin:$PATH"
5050

5151
# Build
5252
printf "\033[33;1mRunning Coverity Scan Analysis Tool...\033[0m\n"

0 commit comments

Comments
 (0)