blob: 761c1e2cdd12403ddd89748d4fe4576ca6ca4af1 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh -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
}
|