diff --git a/README.md b/README.md index 8f347e9b9..767dea132 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Installers | |Ubuntu 14.04 |Windows |Mac OS X |CentOS 7.1 | |---------|:------:|:------:|:------:|:------:| -|**Installers**|[Download Debian Package](https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-ubuntu-x64.latest.deb)|[Download Msi](https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-win-x64.latest.msi)|[Download Pkg](https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-osx-x64.latest.pkg) |N/A | +|**Installers**|[Download Debian Package](https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-ubuntu-x64.latest.deb)|[Download Msi](https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-win-x64.latest.exe)|[Download Pkg](https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-osx-x64.latest.pkg) |N/A | |**Binaries**|[Download tar file](https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/Latest/dotnet-ubuntu-x64.latest.tar.gz)|[Download zip file](https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/Latest/dotnet-win-x64.latest.zip)|[Download tar file](https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/Latest/dotnet-osx-x64.latest.tar.gz) |[Download tar file](https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/Latest/dotnet-centos-x64.latest.tar.gz) | Interested in .NET Core + ASP.NET 5 RC bits? diff --git a/packaging/windows/generatemsi.ps1 b/packaging/windows/generatemsi.ps1 index 7f6774a56..716df1691 100644 --- a/packaging/windows/generatemsi.ps1 +++ b/packaging/windows/generatemsi.ps1 @@ -246,6 +246,6 @@ Write-Host -ForegroundColor Green "Successfully created dotnet bundle - $DotnetB _ $RepoRoot\test\Installer\testmsi.ps1 @("$DotnetMSIOutput") $PublishScript = Join-Path $PSScriptRoot "..\..\scripts\publish\publish.ps1" -& $PublishScript -file $DotnetMSIOutput +& $PublishScript -file $DotnetBundleOutput exit $LastExitCode diff --git a/scripts/publish/publish.ps1 b/scripts/publish/publish.ps1 index 93aaea9c6..0b55f5d19 100644 --- a/scripts/publish/publish.ps1 +++ b/scripts/publish/publish.ps1 @@ -165,7 +165,7 @@ if([System.IO.Path]::GetExtension($file).ToLower() -eq ".zip") { $result = UploadBinaries $file } -elseif([System.IO.Path]::GetExtension($file).ToLower() -eq ".msi") +elseif([System.IO.Path]::GetExtension($file).ToLower() -eq ".exe") { $result = UploadInstallers $file }