mirror of
https://github.com/desktop/desktop
synced 2024-11-05 20:49:32 +00:00
7 lines
163 B
PowerShell
7 lines
163 B
PowerShell
$scriptPath = split-path -parent $MyInvocation.MyCommand.Definition
|
|
|
|
$file = "$scriptPath\windows-certificate.pfx"
|
|
|
|
if ((Test-Path $file)) {
|
|
Remove-Item $file
|
|
}
|