summaryrefslogtreecommitdiffstats
path: root/Tools/msi/bundle
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-11-23 02:20:11 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-11-23 02:20:11 (GMT)
commit21cecb904f80a53a23dc972c95cb0c4c997afbe1 (patch)
tree0a80db1c6331f2bd6dd462dde8567589035bab34 /Tools/msi/bundle
parent6e3d2ba269bc6495cf373bfd8f1c5b0030e6ce4a (diff)
downloadcpython-21cecb904f80a53a23dc972c95cb0c4c997afbe1.zip
cpython-21cecb904f80a53a23dc972c95cb0c4c997afbe1.tar.gz
cpython-21cecb904f80a53a23dc972c95cb0c4c997afbe1.tar.bz2
Fixes upload directories for Windows installer.
Diffstat (limited to 'Tools/msi/bundle')
-rw-r--r--Tools/msi/bundle/bundle.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/bundle/bundle.targets b/Tools/msi/bundle/bundle.targets
index 57ca1dc..aeeff3b 100644
--- a/Tools/msi/bundle/bundle.targets
+++ b/Tools/msi/bundle/bundle.targets
@@ -18,7 +18,7 @@
<!-- See Tools/msi/buildrelease.bat for help on configuring the download URL -->
<DownloadUrl Condition="'$(DownloadUrl)' == '' and '$(DownloadUrlBase)' != ''">$(DownloadUrlBase.TrimEnd(`/`))/{version}/{arch}{releasename}/{msi}</DownloadUrl>
- <DefineConstants Condition="'$(DownloadUrl)' != ''">$(DefineConstants);DownloadUrl=$(DownloadUrl.Replace(`{version}`, `$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)`).Replace(`{arch}`, `$(ArchName)`).Replace(`{releasename}`, `$(ReleaseName)`).Replace(`{msi}`, `{2}`))</DefineConstants>
+ <DefineConstants Condition="'$(DownloadUrl)' != ''">$(DefineConstants);DownloadUrl=$(DownloadUrl.Replace(`{version}`, `$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)`).Replace(`{arch}`, `$(ArchName)`).Replace(`{releasename}`, `$(ReleaseLevelName)`).Replace(`{msi}`, `{2}`))</DefineConstants>
<DefineConstants Condition="'$(DownloadUrl)' == ''">$(DefineConstants);DownloadUrl={2}</DefineConstants>
</PropertyGroup>