4 lines
190 B
PowerShell
4 lines
190 B
PowerShell
# Remove the stage2 output from the path
|
|
$splat = $env:PATH.Split(";")
|
|
$stripped = @($splat | where { $_ -notlike "*artifacts\win7-x64\stage2*" })
|
|
$env:PATH = [string]::Join(";", $stripped)
|