From 06b815cb92255287db14abadac1141722393d84e Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Thu, 29 Sep 2022 20:16:17 +0000 Subject: [PATCH] Disable more shellcheck errors --- .shellcheckrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.shellcheckrc b/.shellcheckrc index 1a4c5fdd63..45e13c2e04 100644 --- a/.shellcheckrc +++ b/.shellcheckrc @@ -5,3 +5,9 @@ external-sources=false # Disable variable referenced but not assigned disable=SC2154 + +# Disable following non-constant source +disable=SC1090 + +# Disable non-existent binary +disable=SC1091