Various fixes

This commit is contained in:
wrenge 2022-06-07 14:35:52 +03:00
parent df8967be12
commit b78c5a4c1e
3 changed files with 9 additions and 4 deletions

View File

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

View File

@ -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");

View File

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