File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
$tempPath = Join-Path $env: TEMP " dnvminstall"
2
- $kvmPs1Path = Join-Path $tempPath " dnvm.ps1"
3
- $kvmCmdPath = Join-Path $tempPath " dnvm.cmd"
2
+ $dnvmPs1Path = Join-Path $tempPath " dnvm.ps1"
3
+ $dnvmCmdPath = Join-Path $tempPath " dnvm.cmd"
4
4
5
5
Write-Host " Using temporary directory: $tempPath "
6
6
if (! (Test-Path $tempPath )) { md $tempPath | Out-Null }
7
7
8
8
9
9
$webClient = New-Object System.Net.WebClient
10
10
Write-Host " Downloading DNVM.ps1 to $dnvmPs1Path "
11
- $webClient.DownloadFile (' https://raw.githubusercontent.com/aspnet/Home/dev/dnvm.ps1' , $kvmPs1Path )
11
+ $webClient.DownloadFile (' https://raw.githubusercontent.com/aspnet/Home/dev/dnvm.ps1' , $dnvmPs1Path )
12
12
Write-Host " Downloading DNVM.cmd to $dnvmCmdPath "
13
- $webClient.DownloadFile (' https://raw.githubusercontent.com/aspnet/Home/dev/dnvm.cmd' , $kvmCmdPath )
13
+ $webClient.DownloadFile (' https://raw.githubusercontent.com/aspnet/Home/dev/dnvm.cmd' , $dnvmCmdPath )
14
14
Write-Host " Installing DNVM"
15
- & $kvmCmdPath setup
15
+ & $dnvmCmdPath setup
You can’t perform that action at this time.
0 commit comments