Skip to content

Commit ca74834

Browse files
authored
Add a workaround to capture the results.
1 parent e352e9e commit ca74834

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

utils/build-windows-toolchain.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -966,6 +966,11 @@ move %PackageRoot%\online\Release\amd64\*.cab %BuildRoot%\artifacts\online\ || (
966966
move %PackageRoot%\online\Release\amd64\*.exe %BuildRoot%\artifacts\online\ || (exit /b)
967967
move %PackageRoot%\online\Release\amd64\*.msi %BuildRoot%\artifacts\online\ || (exit /b)
968968

969+
:: Workaround for lack of control over Jenkins ...
970+
for /F "tokens=*" %%F in ('dir /b %BuildRoot%\artifacts\offline\*') DO (
971+
copy %F %BuildRoot%\artifacts\ || (exit /b)
972+
)
973+
969974
goto :eof
970975
endlocal
971976

0 commit comments

Comments
 (0)