From ce4329d99b6e8686e76ca1dc42a92571e6071e51 Mon Sep 17 00:00:00 2001 From: Nikita Zelencov Date: Thu, 23 Jun 2022 12:04:39 +0300 Subject: [PATCH] fix build task, add call launch build --- teamcity/settings.kts.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teamcity/settings.kts.in b/teamcity/settings.kts.in index 8821522..8f2b1f7 100644 --- a/teamcity/settings.kts.in +++ b/teamcity/settings.kts.in @@ -120,7 +120,7 @@ open class BuildAndroidType(name_suffix : String, environment : String) : } script { name = "Produce" - scriptContent = "./gamectl --env=" + environment + scriptContent = "./gamectl --env=" + environment + " build_android" } } @@ -181,7 +181,7 @@ open class BuildIOSType(name_suffix : String, environment : String) : } script { name = "Produce" - scriptContent = "./gamectl --env=" + environment + scriptContent = "./gamectl --env=" + environment + " build_ios" } }