diff options
author | EuAndreh <eu@euandre.org> | 2021-06-16 23:15:17 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-16 23:15:17 -0300 |
commit | d1617af6d665f9373a89de4c030e51da8ecf162e (patch) | |
tree | 66426b6eb66548c9b2529de1d0abd3064af0dc59 /aux/assert-nixfmt.sh | |
parent | scripts/paku: Use tr over ${VARIABLE^} (diff) | |
download | package-repository-d1617af6d665f9373a89de4c030e51da8ecf162e.tar.gz package-repository-d1617af6d665f9373a89de4c030e51da8ecf162e.tar.xz |
aux/assert-nixfmt.sh: Add back
Diffstat (limited to 'aux/assert-nixfmt.sh')
-rwxr-xr-x | aux/assert-nixfmt.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/aux/assert-nixfmt.sh b/aux/assert-nixfmt.sh new file mode 100755 index 0000000..19bd0a2 --- /dev/null +++ b/aux/assert-nixfmt.sh @@ -0,0 +1,11 @@ +#!/bin/sh +set -eux + +# shellcheck disable=2016 +find . -type f -name '*.nix' -print0 | xargs -0 -I{} sh -c ' + nixfmt < "$1" | diff - "$1" || { + echo "The file \"$1\" is unformatted. To fix it, run:" + echo " nixfmt $1" + exit 1 + } +' _ {} \; |