Removed the auth token from the output, replaced with a 'Suceeded' column.

This commit is contained in:
Michael Smith 2024-09-24 11:34:13 -07:00
Родитель 725bdc0b29
Коммит 41dd7a4ad1
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -2824,7 +2824,12 @@ function Update-UnityPackageManagerConfig {
}
Write-Verbose "Summary"
Write-Output $upmConfigs
$upmConfigs | ForEach-Object {
[PSCustomObject]@{
ScopedURL = $_.ScopedURL
Succeeded = -not [string]::IsNullOrEmpty($_.Auth)
}
} | Format-Table -AutoSize
}
if ($VerifyOnly) {