From 90c531a097c8187fd9fa65a4444203d9e01d3309 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Tue, 4 Jun 2019 05:55:00 -0300 Subject: Use -x flag for shellcheck in utils.nix --- utils.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ''; }); -- cgit v1.2.3