diff --git a/CHANGELOG.md b/CHANGELOG.md index bfb31e6..4f89cc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.1.0] - 2022-06-07 +### Fixed +- Using of deprecated taskman functions +- Repalced 'try_deps_update' with 'deps_update' + ## [1.0.1] - 2022-06-07 ### Added - Skeletor setup step diff --git a/teamcity.inc.php b/teamcity.inc.php index 1a76db0..c23ad2a 100644 --- a/teamcity.inc.php +++ b/teamcity.inc.php @@ -14,8 +14,8 @@ function setup_teamcity_settings($args = array()) $cmd = "git config --get remote.origin.url"; $url = str_replace("\n", "", shell_exec($cmd)); $name = "\"git: ${url}\""; - taskman_propset("TEAM_CITY_SETTINGS_NAME_HERE", $name); - taskman_propset("TEAM_CITY_SETTINGS_URL_HERE", "\"$url\""); + set("TEAM_CITY_SETTINGS_NAME_HERE", $name); + set("TEAM_CITY_SETTINGS_URL_HERE", "\"$url\""); gen_build_file(__DIR__ . "/teamcity/settings.kts.in", "$GAME_ROOT/.teamcity/settings.kts"); diff --git a/teamcity/settings.kts.in b/teamcity/settings.kts.in index 0f38206..ad64eed 100644 --- a/teamcity/settings.kts.in +++ b/teamcity/settings.kts.in @@ -113,7 +113,7 @@ open class BuildAndroidType(proj : String, env : String, branch: String) : } script { name = "Deps Update" - scriptContent = "./gamectl try_deps_update" + scriptContent = "./gamectl deps_update" } script { name = "Clean" @@ -178,7 +178,7 @@ open class BuildIOSType(proj : String, env : String, branch : String) : } script { name = "Deps Update" - scriptContent = "./gamectl try_deps_update" + scriptContent = "./gamectl deps_update" } script { name = "Clean"