Skip to content

Commit 768cc59

Browse files
author
Suhas Joshi
committed
Updated feed to release
1 parent ec0fb25 commit 768cc59

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

kvm.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $feed = $env:KRE_NUGET_API_URL
2424

2525
if (!$feed)
2626
{
27-
$feed = "https://www.myget.org/F/aspnetvnext/api/v2";
27+
$feed = "https://www.myget.org/F/aspnetrelease/api/v2";
2828
}
2929

3030
$scriptPath = $myInvocation.MyCommand.Definition

kvminstall.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ if (!(Test-Path $tempPath)) { md $tempPath | Out-Null }
88

99
$webClient = New-Object System.Net.WebClient
1010
Write-Host "Downloading KVM.ps1 to $kvmPs1Path"
11-
$webClient.DownloadFile('https://raw.githubusercontent.com/aspnet/Home/master/kvm.ps1', $kvmPs1Path)
11+
$webClient.DownloadFile('https://raw.githubusercontent.com/aspnet/Home/release/kvm.ps1', $kvmPs1Path)
1212
Write-Host "Downloading KVM.cmd to $kvmCmdPath"
13-
$webClient.DownloadFile('https://raw.githubusercontent.com/aspnet/Home/master/kvm.cmd', $kvmCmdPath)
13+
$webClient.DownloadFile('https://raw.githubusercontent.com/aspnet/Home/release/kvm.cmd', $kvmCmdPath)
1414
Write-Host "Installing KVM"
1515
& $kvmCmdPath setup

0 commit comments

Comments
 (0)