Skip to content

Commit ccc7fd7

Browse files
committed
Calling build.cmd would exit early it appears so needed to call build.ps1 directly instead to keep the artifact copying.
1 parent c84e971 commit ccc7fd7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.yamato/scripts/build_win.bat

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
@echo off
2-
build.cmd -subset clr -a x64 -c release
2+
setlocal
3+
4+
5+
powershell -ExecutionPolicy ByPass -NoProfile -Command "& 'eng\build.ps1'" -subset clr -a x64 -c release
36

47
if NOT %errorlevel% == 0 (
58
echo "build failed"

0 commit comments

Comments
 (0)