aboutsummaryrefslogtreecommitdiff
path: root/test/run-shellcheck.sh
diff options
context:
space:
mode:
authorDavid Phillips <david@yeah.nah.nz>2020-09-05 15:56:26 +1200
committerDavid Phillips <david@yeah.nah.nz>2020-09-05 16:18:49 +1200
commit5dd638fecd5c31b019c62ebb817bdef11a8a49b2 (patch)
tree8527aee040954bff4f2e5328a6fd18fa9d42eddf /test/run-shellcheck.sh
parent76f2d2c7429a4b85aceafa0080df0af3cd1ad2b5 (diff)
downloadsand-leek-5dd638fecd5c31b019c62ebb817bdef11a8a49b2.tar.xz
Update GitLab pipeline
Misc restructuring to increase reuse between jobs. Also fixes missing python issue on recent Ubuntu containers
Diffstat (limited to 'test/run-shellcheck.sh')
-rwxr-xr-xtest/run-shellcheck.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/run-shellcheck.sh b/test/run-shellcheck.sh
new file mode 100755
index 0000000..1319ba5
--- /dev/null
+++ b/test/run-shellcheck.sh
@@ -0,0 +1,13 @@
+#!/bin/bash -ex
+
+pushd "$(dirname "$0")"
+
+has_error=0
+while IFS= read -d $'\0' -r script ; do
+ echo "$script"
+ if ! shellcheck -e SC1091 "$script" ; then
+ has_error=1
+ fi
+done < <(find .. -name '*.sh' -print0)
+
+exit "$has_error"