diff options
author | EuAndreh <eu@euandre.org> | 2021-01-23 19:56:35 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-23 19:56:35 -0300 |
commit | 6b7e12ab55d1328e6a1c421cbb362c1e76ca0ca1 (patch) | |
tree | f202a06a134ddada6d49644dc56a6b6f4eb21ab0 | |
parent | Remove unused README.sh (diff) | |
download | euandre.org-6b7e12ab55d1328e6a1c421cbb362c1e76ca0ca1.tar.gz euandre.org-6b7e12ab55d1328e6a1c421cbb362c1e76ca0ca1.tar.xz |
{scripts => build-aux}/assert-shellcheck.sh
-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 |