From 6542953d1c7a991cfc2a9ded752ee51d47dc35cc Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Sat, 26 Jul 2025 11:16:39 +0200 Subject: [PATCH] maint(windows): fix calls of renamed functions A recent change (#14324) consolidated (and thus renamed) some functions that were in several places. A PR that got created earlier but merged later (#14267) added new functionality that still used the old function names. This lead to release build failures on Windows and Developer. This change fixes the names of the called functions. Fixes: #14412 Follow-up-of: #14324 Test-bot: skip --- resources/teamcity/includes/tc-windows.inc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/teamcity/includes/tc-windows.inc.sh b/resources/teamcity/includes/tc-windows.inc.sh index d7170fd191..7b64e052fb 100644 --- a/resources/teamcity/includes/tc-windows.inc.sh +++ b/resources/teamcity/includes/tc-windows.inc.sh @@ -4,7 +4,7 @@ # Shared functions for any builds that run on Windows agents ba_win_download_symbol_server_index() { - if ! is_windows; then + if ! builder_is_windows; then builder_die "ba_win_download_symbol_server_index should only be run on Windows agents" fi @@ -24,7 +24,7 @@ ba_win_download_symbol_server_index() { } ba_win_publish_new_symbols() { - if ! is_windows; then + if ! builder_is_windows; then builder_die "ba_win_publish_new_symbols should only be run on Windows agents" fi