fix: Erlang PATH uninstall regex broken
This commit is contained in:
@@ -20,7 +20,8 @@ try
|
|||||||
|
|
||||||
Uninstall-ChocolateyPackage @uninstallParams
|
Uninstall-ChocolateyPackage @uninstallParams
|
||||||
|
|
||||||
$binLocation = Join-Path $installPath 'bin'
|
$binLocation = (Join-Path $installPath 'bin') -replace '\\', '\\'
|
||||||
|
|
||||||
$userPaths = [Environment]::GetEnvironmentVariable('Path', 'User') -split ';' |
|
$userPaths = [Environment]::GetEnvironmentVariable('Path', 'User') -split ';' |
|
||||||
? { ($_ -notmatch $binLocation) -and (![String]::IsNullOrEmpty($_)) } |
|
? { ($_ -notmatch $binLocation) -and (![String]::IsNullOrEmpty($_)) } |
|
||||||
Select-Object -Unique
|
Select-Object -Unique
|
||||||
|
Reference in New Issue
Block a user