bugfix: arreglo split de ramas de flow.branches

This commit is contained in:
Jonathan Teran Carballo
2025-11-28 15:44:05 -03:00
parent 5c3a3171fd
commit 2ad747111f
+1 -1
View File
@@ -170,7 +170,7 @@ class Command(ABC):
def get_branch_env_and_type(self, branch: str) -> tuple[str, str]: def get_branch_env_and_type(self, branch: str) -> tuple[str, str]:
components = branch.split("/") components = branch.split("/")
target_branches = self.flowconfig["flow.branches"].split(" ") target_branches = self.flowconfig["flow.branches"].split(",")
if len(components) == 2: if len(components) == 2:
if components[0] not in BRANCH_TYPES: if components[0] not in BRANCH_TYPES: