From 284705e75ee4d141f0ddb25995a6e43fd0573591 Mon Sep 17 00:00:00 2001 From: Eric Erhardt Date: Fri, 18 Mar 2016 14:02:12 -0500 Subject: [PATCH] Fix update-dependencies script to point to the new CLI install directory. --- scripts/update-dependencies.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update-dependencies.ps1 b/scripts/update-dependencies.ps1 index e7050cec1..ccf609f57 100644 --- a/scripts/update-dependencies.ps1 +++ b/scripts/update-dependencies.ps1 @@ -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"