Browse Source

Maintenance: Fix false positives in shellcheck.

Martin Gruner 2 years ago
parent
commit
9d19ba9cff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .gitlab/ci/pre.yml

+ 1 - 1
.gitlab/ci/pre.yml

@@ -37,7 +37,7 @@
   before_script:
     - echo "Disable default before_script."
   script:
-    - shellcheck -S warning $(find . -name "*.sh" -o -name "functions" | grep -v "/vendor/")
+    - shellcheck -S warning $(find . -name "*.sh" -o -name "functions" | egrep -v "/vendor|node_modules/")
   after_script:
     - echo "Disable default before_script."