Fix install path for update-dependencies.ps1.

This commit is contained in:
Eric Erhardt 2016-03-25 16:47:59 -05:00
parent 21782dd8fb
commit 46db1a69bd

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;$env:PATH"
$env:PATH = "$env:DOTNET_INSTALL_DIR;$env:PATH"
$appPath = "$PSScriptRoot\update-dependencies"