From 6528beda24c4fb0970700094a9e9bc0187cd7a6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=ED=98=95=EC=A3=BC/MDE=20Lab=28SR=29/=EC=82=BC?= =?UTF-8?q?=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Thu, 14 Nov 2024 14:47:30 +0900 Subject: [Tizen] Bypass GBS build fail for exitcode 143 (#637) --- 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 e8d47894334..a67a3f1a079 100755 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -498,7 +498,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. -- cgit v1.2.3