We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e352e9e commit ca74834Copy full SHA for ca74834
utils/build-windows-toolchain.bat
@@ -966,6 +966,11 @@ move %PackageRoot%\online\Release\amd64\*.cab %BuildRoot%\artifacts\online\ || (
966
move %PackageRoot%\online\Release\amd64\*.exe %BuildRoot%\artifacts\online\ || (exit /b)
967
move %PackageRoot%\online\Release\amd64\*.msi %BuildRoot%\artifacts\online\ || (exit /b)
968
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
+
974
goto :eof
975
endlocal
976
0 commit comments