Remove SupportsShouldProcess from Start-PSBootstrap in build.psm1 (#15491)

This commit is contained in:
Anselm Schüler 2021-06-11 23:02:04 +02:00 committed by GitHub
parent 0ae0b65e25
commit 00ffe12bf4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View file

@ -1804,9 +1804,7 @@ function Get-RedHatPackageManager {
}
function Start-PSBootstrap {
[CmdletBinding(
SupportsShouldProcess=$true,
ConfirmImpact="High")]
[CmdletBinding()]
param(
[string]$Channel = $dotnetCLIChannel,
# we currently pin dotnet-cli version, and will

View file

@ -171,7 +171,7 @@ function Invoke-CIInstall
}
Set-BuildVariable -Name TestPassed -Value False
Start-PSBootstrap -Confirm:$false
Start-PSBootstrap
}
function Invoke-CIxUnit