Merge pull request #1952 from eerhardt/FixUpdateScripts

Fix update-dependencies script to point to the new CLI install directory.
This commit is contained in:
Eric Erhardt 2016-03-18 14:38:39 -05:00
commit 3199c81e33

View file

@ -28,7 +28,7 @@ Write-Host "Installing .NET Core CLI Stage 0"
& "$PSScriptRoot\obtain\install.ps1" -Architecture x64
# Put the stage0 on the path
$env:PATH = "$env:DOTNET_INSTALL_DIR\cli\bin;$env:PATH"
$env:PATH = "$env:DOTNET_INSTALL_DIR\cli;$env:PATH"
$appPath = "$PSScriptRoot\update-dependencies"