update package name

This commit is contained in:
Krzysztof Wicher 2016-03-21 11:11:37 -07:00
parent d960734867
commit 369796376b
2 changed files with 2 additions and 2 deletions

View file

@ -154,7 +154,7 @@ function Get-Download-Links([string]$AzureFeed, [string]$AzureChannel, [string]$
Say-Invocation $MyInvocation
$ret = @()
$files = @("dotnet-combined-framework-sdk-host")
$files = @("dotnet-dev")
foreach ($file in $files) {
$PayloadURL = "$AzureFeed/$AzureChannel/Binaries/$SpecificVersion/$file-win-$CLIArchitecture.$SpecificVersion.zip"

View file

@ -326,7 +326,7 @@ construct_download_link() {
local osname=$(get_current_os_name)
local download_link="$azure_feed/$azure_channel/Binaries/$specific_version/dotnet-combined-framework-sdk-host-$osname-$normalized_architecture.$specific_version.tar.gz"
local download_link="$azure_feed/$azure_channel/Binaries/$specific_version/dotnet-dev-$osname-$normalized_architecture.$specific_version.tar.gz"
echo "$download_link"
return 0
}