Fix update-dependencies script to point to the new CLI install directory.

This commit is contained in:
Eric Erhardt 2016-03-18 14:02:12 -05:00
parent faaea62b46
commit 284705e75e

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"