File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -3169,7 +3169,9 @@ function Build-Installer([Hashtable] $Platform) {
3169
3169
function Copy-BuildArtifactsToStage ([Hashtable ] $Platform ) {
3170
3170
Copy-File " $BinaryCache \$ ( $Platform.Triple ) \installer\Release\$ ( $Platform.Architecture.VSName ) \*.cab" $Stage
3171
3171
Copy-File " $BinaryCache \$ ( $Platform.Triple ) \installer\Release\$ ( $Platform.Architecture.VSName ) \*.msi" $Stage
3172
- Copy-File " $BinaryCache \$ ( $Platform.Triple ) \installer\Release\$ ( $Platform.Architecture.VSName ) \*.msm" $Stage
3172
+ foreach ($SDKPlatform in $WindowsSDKPlatforms ) {
3173
+ Copy-File " $BinaryCache \$ ( $Platform.Triple ) \installer\Release\$ ( $SDKPlatform.Architecture.VSName ) \*.msm" $Stage
3174
+ }
3173
3175
Copy-File " $BinaryCache \$ ( $Platform.Triple ) \installer\Release\$ ( $Platform.Architecture.VSName ) \installer.exe" $Stage
3174
3176
# Extract installer engine to ease code-signing on swift.org CI
3175
3177
if ($ToBatch ) {
You can’t perform that action at this time.
0 commit comments