aboutsummaryrefslogtreecommitdiff
path: root/ops/ci/shellcheck.nix
diff options
context:
space:
mode:
Diffstat (limited to 'ops/ci/shellcheck.nix')
-rw-r--r--ops/ci/shellcheck.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/ops/ci/shellcheck.nix b/ops/ci/shellcheck.nix
deleted file mode 100644
index c862a87..0000000
--- a/ops/ci/shellcheck.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ pkgs, ... }: rec {
- mkShellCheckScript = src:
- let
- script = pkgs.writeScript "shellcheck" ''
- EXIT_STATUS=0
- while IFS= read -r -d ''' i
- do
- if ${pkgs.shellcheck}/bin/shellcheck -x "$i"
- then
- echo "$i [ PASSED ]"
- else
- echo "$i [ FAILED ]"
- EXIT_STATUS=$(($EXIT_STATUS+1))
- fi
- done < <(find -name '*.sh' -print0)
- echo Total Failed Files: $EXIT_STATUS
- exit "$EXIT_STATUS"
- '';
- in
- {
- type = "app";
- program = "${script}";
- };
-}