aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--utils.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.nix b/utils.nix
index 6870cba..326966a 100644
--- a/utils.nix
+++ b/utils.nix
@@ -20,7 +20,7 @@ in rec {
ignoredPattern =
if ignoredFindPattern == null then "" else ignoredFindPattern;
buildPhase = ''
- find . -type f \( -name '*.sh' -and -regextype egrep ! -regex '${ignoredPattern}' \) -print0 | xargs -0 shellcheck
+ find . -type f \( -name '*.sh' -and -regextype egrep ! -regex '${ignoredPattern}' \) -print0 | xargs -0 shellcheck -x
touch $out
'';
});