From 9c73ca6838d32633052e28c5fb457d632175dde7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hatvani=20Tam=C3=A1s?= <75033623+htamas1210@users.noreply.github.com> Date: Tue, 11 Nov 2025 11:34:05 +0100 Subject: [PATCH] Fix formatting of conditional checks in dispatcher.yml --- .github/workflows/dispatcher.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dispatcher.yml b/.github/workflows/dispatcher.yml index b462a84..0524127 100644 --- a/.github/workflows/dispatcher.yml +++ b/.github/workflows/dispatcher.yml @@ -26,13 +26,13 @@ jobs: SERVER=false UI=false - if [["$BRANCH" == *"Engine"*]] ; then + if [[ "$BRANCH" == *"Engine"* ]] ; then ENGINE=true fi - if [["$BRANCH" == *"Server"*]] ; then + if [[ "$BRANCH" == *"Server"* ]] ; then SERVER=true fi - if [["$BRANCH" == *"UI"*]] ; then + if [[ "$BRANCH" == *"UI"* ]] ; then UI=true fi