From b606cd18b498d203507b0a53f0406ea10ebda4d1 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Thu, 15 Dec 2022 17:37:40 +0000 Subject: [PATCH] jenkins: fix shellcheck linter CI (#3115) Recently released shellcheck 0.9.0 adds a new check: ``` SC2317 (info): Command appears to be unreachable. Check usage (or ignore if invoked indirectly). ``` Fix the one instance of this that is causing the CI to now fail with the updated version of shellcheck. Refs: https://github.com/koalaman/shellcheck/commit/642ad8612597b28af4026bde289985583fddb69d --- jenkins/scripts/select-compiler.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/jenkins/scripts/select-compiler.sh b/jenkins/scripts/select-compiler.sh index f9c900454..0fc7cfb6f 100644 --- a/jenkins/scripts/select-compiler.sh +++ b/jenkins/scripts/select-compiler.sh @@ -60,7 +60,6 @@ case $NODE_NAME in return ;; esac - return ;; esac