ansible/test/integration/targets/win_chocolatey/files/tools/chocolateyUninstall.ps1

10 lines
282 B
PowerShell
Raw Normal View History

$ErrorActionPreference = 'Stop'
$package_name = $env:ChocolateyPackageName
$package_version = $env:ChocolateyPackageVersion
$install_path = "--- PATH ---\$package_name-$package_version.txt"
if (Test-Path -Path $install_path) {
Remove-Item -Path $install_path -Force > $null
}