From 44f4037d8dc687dbc2e5edab51ae9513550dadaf Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=ED=98=95=EC=A3=BC/MDE=20Lab=28SR=29/=EC=82=BC?= =?utf8?q?=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Thu, 14 Nov 2024 14:47:23 +0900 Subject: [PATCH] [Tizen] Bypass GBS build fail for exitcode 143 (#110) * [Tizen] Bypass GBS build fail for exitcode 143 * [Tizen] Fix typo --- eng/common/tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/common/tools.sh b/eng/common/tools.sh index 6341cda20..be435c8ff 100644 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -503,7 +503,7 @@ function MSBuild-Core { function RunBuildTool { export ARCADE_BUILD_TOOL_COMMAND="$_InitializeBuildTool $@" - "$_InitializeBuildTool" "$@" || { + "$_InitializeBuildTool" "$@" || "$_InitializeBuildTool" "$@" || { local exit_code=$? # We should not Write-PipelineTaskError here because that message shows up in the build summary # The build already logged an error, that's the reason it failed. Producing an error here only adds noise. -- 2.34.1