From 4472c212c3d5dab0428394e4d37857d457dc8753 Mon Sep 17 00:00:00 2001 From: Ruud Senden <8635138+rsenden@users.noreply.github.com> Date: Tue, 17 Sep 2024 10:26:09 +0200 Subject: [PATCH] chore: Fix missing quotes in common.sh --- internal/run-script/scripts/common.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/run-script/scripts/common.sh b/internal/run-script/scripts/common.sh index e3fc51a..180b570 100644 --- a/internal/run-script/scripts/common.sh +++ b/internal/run-script/scripts/common.sh @@ -252,7 +252,7 @@ function requireSCSastSession { # Function to determine whether appversion/release setup is enabled. Setup # is enabled if any of the SETUP variables is set. function doSetup { - [[ "${DO_SETUP}" == "true" || -n "${SETUP_ACTION}" || -n "${SETUP_EXTRA_OPTS} ]] + [[ "${DO_SETUP}" == "true" || -n "${SETUP_ACTION}" || -n "${SETUP_EXTRA_OPTS}" ]] } ############################################################################# @@ -274,14 +274,14 @@ function doPRComment { # Function to determine whether PR comments should be generated. Job summary # is enabled if any of the JOB_SUMMARY variables is set. function doJobSummary { - [[ "${DO_JOB_SUMMARY}" == "true" || -n "${JOB_SUMMARY_ACTION}" || -n "${JOB_SUMMARY_EXTRA_OPTS} ]] + [[ "${DO_JOB_SUMMARY}" == "true" || -n "${JOB_SUMMARY_ACTION}" || -n "${JOB_SUMMARY_EXTRA_OPTS}" ]] } ############################################################################# # Function to determine whether policy check should be run. Policy checks # are enabled if any of the POLICY_CHECK variables is set. function doPolicyCheck { - [[ "${DO_POLICY_CHECK}" == "true" || -n "${POLICY_CHECK_ACTION}" || -n "${POLICY_CHECK_EXTRA_OPTS} ]] + [[ "${DO_POLICY_CHECK}" == "true" || -n "${POLICY_CHECK_ACTION}" || -n "${POLICY_CHECK_EXTRA_OPTS}" ]] } #############################################################################