From: Francois-Xavier Le Bail Date: Sun, 3 Dec 2023 17:07:26 +0000 (+0100) Subject: .ci-coverity-scan-build.sh: Fix two shellcheck notes X-Git-Tag: tcpdump-4.99.5~121 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/343fe888e4bc9cdcbf6ee70745abf5ece019373d .ci-coverity-scan-build.sh: Fix two shellcheck notes The notes were: Double quote to prevent globbing and word splitting. [SC2086] (cherry picked from commit 178aa7964f884518822ce7dd6346ec792aaecaad) [skip ci] --- diff --git a/.ci-coverity-scan-build.sh b/.ci-coverity-scan-build.sh index 686806a3..6d00f4fe 100755 --- a/.ci-coverity-scan-build.sh +++ b/.ci-coverity-scan-build.sh @@ -46,7 +46,7 @@ if [ ! -d $TOOL_BASE ]; then fi TOOL_DIR=$(find $TOOL_BASE -type d -name 'cov-analysis*') -export PATH=$TOOL_DIR/bin:$PATH +export PATH="$TOOL_DIR/bin:$PATH" # Build printf "\033[33;1mRunning Coverity Scan Analysis Tool...\033[0m\n"