aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2019-01-03 06:43:39 -0200
committerEuAndreh <eu@euandre.org>2019-01-03 06:43:39 -0200
commit9be46264e1965ad98627ce5652d771c5a598444a (patch)
tree4f0731a1a85bd918cd45d0f28a4d801e75ee1a33
parentFix shellcheck ofsenses on bash scripts. (diff)
downloaddotfiles-9be46264e1965ad98627ce5652d771c5a598444a.tar.gz
dotfiles-9be46264e1965ad98627ce5652d771c5a598444a.tar.xz
Disable 1090, 1091 and 2139 shellcheck rules.
-rw-r--r--default.nix2
1 files changed, 1 insertions, 1 deletions
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
'';
};