diff options
author | EuAndreh <eu@euandre.org> | 2019-01-03 06:43:39 -0200 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-01-03 06:43:39 -0200 |
commit | 9be46264e1965ad98627ce5652d771c5a598444a (patch) | |
tree | 4f0731a1a85bd918cd45d0f28a4d801e75ee1a33 | |
parent | Fix shellcheck ofsenses on bash scripts. (diff) | |
download | dotfiles-9be46264e1965ad98627ce5652d771c5a598444a.tar.gz dotfiles-9be46264e1965ad98627ce5652d771c5a598444a.tar.xz |
Disable 1090, 1091 and 2139 shellcheck rules.
-rw-r--r-- | default.nix | 2 |
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 ''; }; |