2015-12-28 19:47:21 +00:00
|
|
|
#
|
|
|
|
# Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
#
|
|
|
|
|
2015-11-18 02:02:28 +00:00
|
|
|
# Remove the stage2 output from the path
|
|
|
|
$splat = $env:PATH.Split(";")
|
|
|
|
$stripped = @($splat | where { $_ -notlike "*artifacts\win7-x64\stage2*" })
|
|
|
|
$env:PATH = [string]::Join(";", $stripped)
|