mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
93c05074ee
* win_chocolatey: refactor module to fix bugs and add new features * Fix some typos and only emit install warning not in check mode * Fixes when testing out installing chocolatey from a server * Added changelog fragment
9 lines
282 B
PowerShell
9 lines
282 B
PowerShell
$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
|
|
}
|