diff --git a/UnitySetup/UnitySetup.psm1 b/UnitySetup/UnitySetup.psm1 index 782e568..548e677 100644 --- a/UnitySetup/UnitySetup.psm1 +++ b/UnitySetup/UnitySetup.psm1 @@ -2823,19 +2823,8 @@ function Update-UnityPackageManagerConfig { Export-UPMConfig -UPMConfig $upmConfigs -tomlFilePaths $tomlFilePaths } - if ($upmConfigs) { - Write-Verbose "Summary" - $upmConfigs = $upmConfigs | ForEach-Object { - [PSCustomObject]@{ - ScopedURL = $_.ScopedURL - Succeeded = -not [string]::IsNullOrEmpty($_.Auth) - } - } | Format-Table -AutoSize - - Write-Verbose $upmConfigs - } else { - Write-Verbose "No changes were made" - } + Write-Verbose "Summary" + Write-Output $upmConfigs } if ($VerifyOnly) {