From: Francois-Xavier Le Bail Date: Mon, 31 May 2021 13:01:44 +0000 (+0200) Subject: build.sh: Disable a shellcheck error X-Git-Tag: tcpdump-4.99.1~7 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/4badac97b09191b06aff6780a953b9652ef80699?ds=sidebyside build.sh: Disable a shellcheck error We need the $@ expansion. The error was: Double quote array expansions to avoid re-splitting elements. [SC2068] (cherry picked from commit 5abf27529db8ad8bcadc31ebe5eadc4de036c898) --- diff --git a/build.sh b/build.sh index eae8765d..5d3592ed 100755 --- a/build.sh +++ b/build.sh @@ -41,6 +41,7 @@ travis_fold() { run_after_echo() { echo -n '$ ' echo "$@" + # shellcheck disable=SC2068 $@ }