]> The Tcpdump Group git mirrors - tcpdump/commitdiff
build.sh: Disable a shellcheck error
authorFrancois-Xavier Le Bail <[email protected]>
Mon, 31 May 2021 13:01:44 +0000 (15:01 +0200)
committerFrancois-Xavier Le Bail <[email protected]>
Mon, 31 May 2021 13:10:52 +0000 (15:10 +0200)
We need the $@ expansion.

The error was:
Double quote array expansions to avoid re-splitting elements. [SC2068]

(cherry picked from commit 5abf27529db8ad8bcadc31ebe5eadc4de036c898)

build.sh

index eae8765ddbf9b49935a429461eb3711eab9c3517..5d3592edaf54c49b292875f282211cf690aff079 100755 (executable)
--- a/build.sh
+++ b/build.sh
@@ -41,6 +41,7 @@ travis_fold() {
 run_after_echo() {
     echo -n '$ '
     echo "$@"
+    # shellcheck disable=SC2068
     $@
 }