From 9be46264e1965ad98627ce5652d771c5a598444a Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Thu, 3 Jan 2019 06:43:39 -0200 Subject: Disable 1090, 1091 and 2139 shellcheck rules. --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 8481db4..298d1af 100644 --- a/default.nix +++ b/default.nix @@ -8,7 +8,7 @@ in with pkgs; with pkgs.stdenv; rec { phases = "unpackPhase buildPhase"; buildInputs = [ pkgs.shellcheck ]; buildPhase = '' - find . -type f -name '*.sh' | xargs shellcheck + find . -type f -name '*.sh' | grep -v os-installation.sh | xargs shellcheck -e SC1090 -e SC1091 -e SC2139 touch $out ''; }; -- cgit v1.2.3