aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2025-08-03 22:08:13 +0200
committerJakob Unterwurzacher2025-08-03 22:08:13 +0200
commit516dc9739814cd745d9b94393105649c72edc4d6 (patch)
treec6dffd38765469e150af188a8c83b5303657c0e4
parent00ea6f7e5607a933767a8778d60b8d14e4d9f20d (diff)
test.bash: drop SC2002 exception
No longer needed.
-rwxr-xr-xtest.bash3
1 files changed, 1 insertions, 2 deletions
diff --git a/test.bash b/test.bash
index 9e1d89a..8cc23a7 100755
--- a/test.bash
+++ b/test.bash
@@ -74,8 +74,7 @@ else
fi
if command -v shellcheck > /dev/null ; then
- # SC2002 = useless cat. Does no harm, disable the check.
- shellcheck -x -e SC2002 ./*.bash
+ shellcheck -x ./*.bash
else
echo "shellcheck not installed - skipping"
fi