diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-11-23 02:20:11 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-11-23 02:20:11 (GMT) |
commit | 21cecb904f80a53a23dc972c95cb0c4c997afbe1 (patch) | |
tree | 0a80db1c6331f2bd6dd462dde8567589035bab34 /Tools/msi/bundle | |
parent | 6e3d2ba269bc6495cf373bfd8f1c5b0030e6ce4a (diff) | |
download | cpython-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.targets | 2 |
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> |