Fix conditional syntax in dispatcher.yml

This commit is contained in:
Hatvani Tamás
2025-11-11 11:22:21 +01:00
committed by GitHub
parent 4ae9eea7e2
commit b6f0b6ee5e

View File

@@ -26,13 +26,13 @@ jobs:
SERVER=false
UI=false
if "$BRANCH" == *"Engine"* || "$BRANCH" == *"engine"* ; then
if [["$BRANCH" == *"Engine"* || "$BRANCH" == *"engine"*]] ; then
ENGINE=true
fi
if "$BRANCH" == *"Server"* || "$BRANCH" == *"server"* ; then
if [["$BRANCH" == *"Server"* || "$BRANCH" == *"server"*]] ; then
SERVER=true
fi
if "$BRANCH" == *"UI"* || "$BRANCH" == *"ui"* ; then
if [["$BRANCH" == *"UI"* || "$BRANCH" == *"ui"*]] ; then
UI=true
fi