Fix formatting of conditional checks in dispatcher.yml

This commit is contained in:
Hatvani Tamás
2025-11-11 11:34:05 +01:00
committed by GitHub
parent 0f50f31b13
commit 9c73ca6838

View File

@@ -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