aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix3
1 files changed, 1 insertions, 2 deletions
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
'';
});