File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -693,11 +693,14 @@ msbuild %SourceRoot%\swift-installer-scripts\platforms\Windows\installer.wixproj
693
693
694
694
:: Stage Artifacts
695
695
md %BuildRoot% \artifacts
696
- :: FIXME(compnerd) should we provide SDKs as standalone artifact?
697
- move %PackageRoot% \sdk .msi %BuildRoot% \artifacts || (exit /b)
696
+ :: ICU Dependency for runtime libraries
697
+ move %PackageRoot% \icu .msi %BuildRoot% \artifacts || (exit /b)
698
698
:: Redistributable libraries for developers
699
699
move %PackageRoot% \runtime.msi %BuildRoot% \artifacts || (exit /b)
700
- move %PackageRoot% \icu.msi %BuildRoot% \artifacts || (exit /b)
700
+ :: Toolchain
701
+ move %PackageRoot% \toolchain.msi %BuildRoot% \artifacts || (exit /b)
702
+ :: SDK
703
+ move %PackageRoot% \sdk.msi %BuildRoot% \artifacts || (exit /b)
701
704
:: Installer
702
705
move %PackageRoot% \installer\installer.exe %BuildRoot% \artifacts || (exit /b)
703
706
You can’t perform that action at this time.
0 commit comments