diff options
| -rw-r--r-- | .build.yml | 2 | ||||
| -rw-r--r-- | default.nix | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -15,6 +15,8 @@ tasks: - setup: | curl https://nixos.org/nix/install | sh echo '. ~/.nix-profile/etc/profile.d/nix.sh' >> ~/.buildenv + cd vps/ + git crypt unlock - tests: | cd vps/ nix-build -A test diff --git a/default.nix b/default.nix index 67830e2..08568b2 100644 --- a/default.nix +++ b/default.nix @@ -27,8 +27,7 @@ with pkgs.stdenv; rec { name = "${baseAttrs.name}-shellcheck"; buildInputs = baseAttrs.buildInputs ++ [ shellcheck ]; buildPhase = '' - ignored='(secrets/)' - find . -type f -name '*.sh' | grep -E -v $ignored | xargs shellcheck + find . -type f -name '*.sh' | xargs shellcheck touch $out ''; }); |
