From 2bb2d1484d541c8fb391d79dcdfda1ba5aa10ef6 Mon Sep 17 00:00:00 2001 From: Glen Date: Mon, 11 May 2015 10:32:45 +0200 Subject: [PATCH] Fix variable names in dnvminstall.ps1 --- dnvminstall.ps1 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dnvminstall.ps1 b/dnvminstall.ps1 index 9f68f27bab..765cde2e58 100644 --- a/dnvminstall.ps1 +++ b/dnvminstall.ps1 @@ -1,6 +1,6 @@ $tempPath = Join-Path $env:TEMP "dnvminstall" -$kvmPs1Path = Join-Path $tempPath "dnvm.ps1" -$kvmCmdPath = Join-Path $tempPath "dnvm.cmd" +$dnvmPs1Path = Join-Path $tempPath "dnvm.ps1" +$dnvmCmdPath = Join-Path $tempPath "dnvm.cmd" Write-Host "Using temporary directory: $tempPath" if (!(Test-Path $tempPath)) { md $tempPath | Out-Null } @@ -8,8 +8,8 @@ if (!(Test-Path $tempPath)) { md $tempPath | Out-Null } $webClient = New-Object System.Net.WebClient Write-Host "Downloading DNVM.ps1 to $dnvmPs1Path" -$webClient.DownloadFile('https://raw.githubusercontent.com/aspnet/Home/dev/dnvm.ps1', $kvmPs1Path) +$webClient.DownloadFile('https://raw.githubusercontent.com/aspnet/Home/dev/dnvm.ps1', $dnvmPs1Path) Write-Host "Downloading DNVM.cmd to $dnvmCmdPath" -$webClient.DownloadFile('https://raw.githubusercontent.com/aspnet/Home/dev/dnvm.cmd', $kvmCmdPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aspnet/Home/dev/dnvm.cmd', $dnvmCmdPath) Write-Host "Installing DNVM" -& $kvmCmdPath setup \ No newline at end of file +& $dnvmCmdPath setup