diff options
author | EuAndreh <eu@euandre.org> | 2021-01-10 10:31:28 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-10 10:32:56 -0300 |
commit | d9aef665013e202ab4dac844e9dcd029a43f4222 (patch) | |
tree | 7e15e975ec093470d9f00ac8a40c84daeb482128 /build-aux/assert-shellcheck.sh | |
parent | Remove guix/channels.scm (diff) | |
download | toph-d9aef665013e202ab4dac844e9dcd029a43f4222.tar.gz toph-d9aef665013e202ab4dac844e9dcd029a43f4222.tar.xz |
Move scripts/ to build-aux/
Diffstat (limited to 'build-aux/assert-shellcheck.sh')
-rwxr-xr-x | build-aux/assert-shellcheck.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build-aux/assert-shellcheck.sh b/build-aux/assert-shellcheck.sh new file mode 100755 index 0000000..d07815b --- /dev/null +++ b/build-aux/assert-shellcheck.sh @@ -0,0 +1,5 @@ +#!/bin/sh -eux + +git ls-files -z | \ + xargs -0 awk 'FNR==1 && /^#!\/bin\/sh/ { print FILENAME }' | \ + xargs shellcheck |