File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4320,12 +4320,12 @@ if (-not $SkipBuild) {
43204320 foreach ($Build in $WindowsSDKBuilds ) {
43214321 Invoke-BuildStep Build-ExperimentalSDK $Build
43224322
4323- Get-ChildItem " ${SDKROOT} \usr\lib\swift\windows" - Filter " *.lib" - File - ErrorAction Ignore | ForEach-Object {
4323+ Get-ChildItem - ErrorAction Ignore " ${SDKROOT} \usr\lib\swift\windows" - Filter " *.lib" - File | ForEach-Object {
43244324 Write-Host - BackgroundColor DarkRed - ForegroundColor White " $ ( $_.FullName ) is not nested in an architecture directory"
43254325 Move-Item $_.FullName " ${SDKROOT} \usr\lib\swift\windows\$ ( $Build.Architecture.LLVMName ) \" | Out-Null
43264326 }
43274327
4328- Get-ChildItem " ${SDKROOT} \usr\lib\swift_static\windows" - Filter " *.lib" - File - ErrorAction Ignore | ForEach-Object {
4328+ Get-ChildItem - ErrorAction Ignore " ${SDKROOT} \usr\lib\swift_static\windows" - Filter " *.lib" - File | ForEach-Object {
43294329 Write-Host - BackgroundColor DarkRed - ForegroundColor White " $ ( $_.FullName ) is not nested in an architecture directory"
43304330 Move-Item $_.FullName " ${SDKROOT} \usr\lib\swift_static\windows\$ ( $Build.Architecture.LLVMName ) \" | Out-Null
43314331 }
@@ -4402,7 +4402,7 @@ if (-not $SkipBuild) {
44024402 Move-Item $_.FullName " ${SDKROOT} \usr\lib\swift\android\$ ( $Build.Architecture.LLVMName ) \" | Out-Null
44034403 }
44044404
4405- Get-ChildItem " ${SDKROOT} \usr\lib\swift_static\android" - File | Where-Object { $_.Name -match " .a$|.so$" } | ForEach-Object {
4405+ Get-ChildItem - ErrorAction Ignore " ${SDKROOT} \usr\lib\swift_static\android" - File | Where-Object { $_.Name -match " .a$|.so$" } | ForEach-Object {
44064406 Write-Host - BackgroundColor DarkRed - ForegroundColor White " $ ( $_.FullName ) is not nested in an architecture directory"
44074407 Move-Item $_.FullName " ${SDKROOT} \usr\lib\swift_static\android\$ ( $Build.Architecture.LLVMName ) \" | Out-Null
44084408 }
You can’t perform that action at this time.
0 commit comments