dotnet-installer/scripts/unuse-dev.ps1
2015-11-17 18:08:31 -08:00

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)