diff --git a/justfile b/justfile index 228fd44..766403d 100644 --- a/justfile +++ b/justfile @@ -13,6 +13,7 @@ build *args: update input_name="": #!/usr/bin/env sh + set -euxo pipefail if [ -n "{{input_name}}" ]; then nix flake lock --update-input "{{input_name}}" else @@ -30,6 +31,9 @@ format: treefmt check-flake-outputs: + #!/usr/bin/env sh + set -euxo pipefail + export NIXPKGS_ALLOW_UNFREE=1 nix flake check --all-systems --verbose ci: check-flake-outputs