[macos] suppress xcodebuild output (#8276)

This commit is contained in:
ilia-shipitsin
2023-09-13 11:45:19 +02:00
committed by GitHub
parent fc8f6d479d
commit 5ffd15d845
2 changed files with 2 additions and 2 deletions

View File

@@ -176,7 +176,7 @@ function Install-AdditionalSimulatorRuntimes {
Write-Host "Installing Simulator Runtimes for Xcode $Version ..."
$xcodebuildPath = Get-XcodeToolPath -Version $Version -ToolName "xcodebuild"
Invoke-ValidateCommand "$xcodebuildPath -downloadAllPlatforms"
Invoke-ValidateCommand "$xcodebuildPath -downloadAllPlatforms" | Out-Null
}
function Build-XcodeSymlinks {

View File

@@ -41,7 +41,7 @@ $xcodeVersions | ForEach-Object {
ForEach($runtime in $_.runtimes) {
Write-Host "Installing Additional runtimes for Xcode '$runtime' ..."
$xcodebuildPath = Get-XcodeToolPath -Version $_.link -ToolName 'xcodebuild'
Invoke-ValidateCommand "sudo $xcodebuildPath -downloadPlatform $runtime"
Invoke-ValidateCommand "sudo $xcodebuildPath -downloadPlatform $runtime" | Out-Null
}
}