mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 08:41:42 -05:00
10 lines
231 B
Text
Executable file
10 lines
231 B
Text
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell ./check-fmt.nix -i bash
|
|
#
|
|
# Just because the nixpkgs-fmt error message is not super readable. Used by
|
|
# CI.
|
|
|
|
if ! nixpkgs-fmt --check . ; then
|
|
echo 'run `nixpkgs-fmt .` to fix it'
|
|
exit 1
|
|
fi
|