blob: 9bdd3bf8a27d60894a2687a68885bbaf8b2efc2b (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
set -eux
# shellcheck disable=2094
nixfmt < default.nix | diff - default.nix || {
echo 'The file default.nix is unformatted. To fix it, run:'
echo ' nixfmt default.nix'
exit 1
}
|