fix build task, add call launch build

This commit is contained in:
Зеленцов Никита 2022-06-23 12:04:39 +03:00
parent c7bd443cbd
commit ce4329d99b
1 changed files with 2 additions and 2 deletions

View File

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