do not echo sensitive params

This commit is contained in:
David Sparer
2017-03-18 16:29:44 -06:00
parent 512d7322b2
commit 92bd0d3ea0

View File

@@ -25,7 +25,7 @@ param (
Write-Output "+=================================================================+"
Write-Output "| Beginning mRemoteV1 Post Build |"
Write-Output "+=================================================================+"
Write-Output ([pscustomobject]$PSBoundParameters) | Format-Table -AutoSize -Wrap
Write-Output ([pscustomobject]$PSBoundParameters) | ?{$_.Key -notmatch "Certificate"} | Format-Table -AutoSize -Wrap
& "$PSScriptRoot\copy_puttyng.ps1" -SolutionDir $SolutionDir -TargetDir $TargetDir