From ccc7fd77f25579edab2f6b2255e7016186ab26fe Mon Sep 17 00:00:00 2001 From: Alex Thibodeau Date: Thu, 28 Oct 2021 13:08:29 -0400 Subject: [PATCH] Calling build.cmd would exit early it appears so needed to call build.ps1 directly instead to keep the artifact copying. --- .yamato/scripts/build_win.bat | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.yamato/scripts/build_win.bat b/.yamato/scripts/build_win.bat index 7cb15792509d51..79ebdc83e32d3f 100644 --- a/.yamato/scripts/build_win.bat +++ b/.yamato/scripts/build_win.bat @@ -1,5 +1,8 @@ @echo off -build.cmd -subset clr -a x64 -c release +setlocal + + +powershell -ExecutionPolicy ByPass -NoProfile -Command "& 'eng\build.ps1'" -subset clr -a x64 -c release if NOT %errorlevel% == 0 ( echo "build failed"