diff options
Diffstat (limited to '')
-rwxr-xr-x | build-aux/assert-shellcheck.sh | 6 | ||||
-rwxr-xr-x | scripts/assert-shellcheck.sh | 7 | ||||
-rwxr-xr-x | tests.sh | 2 |
3 files changed, 7 insertions, 8 deletions
diff --git a/build-aux/assert-shellcheck.sh b/build-aux/assert-shellcheck.sh new file mode 100755 index 0000000..334a875 --- /dev/null +++ b/build-aux/assert-shellcheck.sh @@ -0,0 +1,6 @@ +#!/bin/sh +set -eux + +git ls-files -z | \ + xargs -0 awk 'FNR==1 && /^#!\/bin\/sh$/ { print FILENAME }' | \ + xargs shellcheck diff --git a/scripts/assert-shellcheck.sh b/scripts/assert-shellcheck.sh deleted file mode 100755 index 76fb2d0..0000000 --- a/scripts/assert-shellcheck.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -set -eux - -git ls-files -z | \ - grep -zv vendor | \ - xargs -0 awk 'FNR==1 && /^#!\/bin\/sh/ { print FILENAME }' | \ - xargs shellcheck @@ -3,7 +3,7 @@ set -eux sh scripts/assert-spelling.sh sh scripts/assert-nixfmt.sh -sh scripts/assert-shellcheck.sh +sh build-aux/assert-shellcheck.sh sh scripts/assert-todos.sh sh scripts/sync-translations.sh |