diff options
Diffstat (limited to '')
-rw-r--r-- | utils.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ''; }); |