added a script to put the dev build on the PATH
This commit is contained in:
parent
a492ea7834
commit
a188ebe4e2
3 changed files with 15 additions and 41 deletions
4
scripts/unuse-dev.ps1
Normal file
4
scripts/unuse-dev.ps1
Normal file
|
@ -0,0 +1,4 @@
|
|||
# Remove the stage2 output from the path
|
||||
$splat = $env:PATH.Split(";")
|
||||
$stripped = @($splat | where { $_ -notlike "*artifacts\win7-x64\stage2*" })
|
||||
$env:PATH = [string]::Join(";", $stripped)
|
Loading…
Add table
Add a link
Reference in a new issue