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 @@ -4321,12 +4321,12 @@ if (-not $SkipBuild) {
43214321 foreach ($Build in $WindowsSDKBuilds ) {
43224322 Invoke-BuildStep Build-ExperimentalSDK $Build
43234323
4324- Get-ChildItem " ${SDKROOT} \usr\lib\swift\windows" - Filter " *.lib" - File - ErrorAction Ignore | ForEach-Object {
4324+ Get-ChildItem - ErrorAction Ignore " ${SDKROOT} \usr\lib\swift\windows" - Filter " *.lib" - File | ForEach-Object {
43254325 Write-Host - BackgroundColor DarkRed - ForegroundColor White " $ ( $_.FullName ) is not nested in an architecture directory"
43264326 Move-Item $_.FullName " ${SDKROOT} \usr\lib\swift\windows\$ ( $Build.Architecture.LLVMName ) \" | Out-Null
43274327 }
43284328
4329- Get-ChildItem " ${SDKROOT} \usr\lib\swift_static\windows" - Filter " *.lib" - File - ErrorAction Ignore | ForEach-Object {
4329+ Get-ChildItem - ErrorAction Ignore " ${SDKROOT} \usr\lib\swift_static\windows" - Filter " *.lib" - File | ForEach-Object {
43304330 Write-Host - BackgroundColor DarkRed - ForegroundColor White " $ ( $_.FullName ) is not nested in an architecture directory"
43314331 Move-Item $_.FullName " ${SDKROOT} \usr\lib\swift_static\windows\$ ( $Build.Architecture.LLVMName ) \" | Out-Null
43324332 }
@@ -4403,7 +4403,7 @@ if (-not $SkipBuild) {
44034403 Move-Item $_.FullName " ${SDKROOT} \usr\lib\swift\android\$ ( $Build.Architecture.LLVMName ) \" | Out-Null
44044404 }
44054405
4406- Get-ChildItem " ${SDKROOT} \usr\lib\swift_static\android" - File | Where-Object { $_.Name -match " .a$|.so$" } | ForEach-Object {
4406+ Get-ChildItem - ErrorAction Ignore " ${SDKROOT} \usr\lib\swift_static\android" - File | Where-Object { $_.Name -match " .a$|.so$" } | ForEach-Object {
44074407 Write-Host - BackgroundColor DarkRed - ForegroundColor White " $ ( $_.FullName ) is not nested in an architecture directory"
44084408 Move-Item $_.FullName " ${SDKROOT} \usr\lib\swift_static\android\$ ( $Build.Architecture.LLVMName ) \" | Out-Null
44094409 }
You can’t perform that action at this time.
0 commit comments