From c4f68815ce8b1e49da6f74f22cc47ae04f347544 Mon Sep 17 00:00:00 2001
From: Jan David Mol <mol@astron.nl>
Date: Mon, 11 Oct 2021 16:42:37 +0200
Subject: [PATCH] L2SS-409: Ignore shebangs not working with more than one
 parameter on some OSes. We don't use those OSes, and don't want to lose this
 functionality.

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 350b264d8..a150dca3e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -37,7 +37,7 @@ shellcheck:
     - sudo apt-get update
     - sudo apt-get install -y shellcheck
   script:
-    - shellcheck **/*.sh
+    - shellcheck -e SC2096 **/*.sh
 unit_test:
   stage: unit-tests
   before_script:
-- 
GitLab