summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2023-11-05 17:56:08 +0100
committerAlejandro Colomar <alx@kernel.org>2023-11-05 17:56:08 +0100
commitbdd576c6052d264077c1cef640bfdafc3013203b (patch)
tree655d53d1f7c6d16f01787fa8662cea2966b43813
parenta3c8ffc2eb2903b25c6a6151f633db16b07b0964 (diff)
bin/grepc: Ignore a shellcheck(1) warningHEADmain
Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rwxr-xr-xbin/grepc1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/grepc b/bin/grepc
index f6fd35d..b5a21f0 100755
--- a/bin/grepc
+++ b/bin/grepc
@@ -167,6 +167,7 @@ patterns="$(mktemp -t grepc.patterns.XXXXXX)";
) >"$patterns";
+# shellcheck disable=SC2206 # We want only non-empty variables in the array.
opts=($A $B $C $c $h $i $l -M $n);