summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2017-03-06 03:55:12 (GMT)
committerGitHub <noreply@github.com>2017-03-06 03:55:12 (GMT)
commitf6e61019ae6b2517c8eb7755f75e4de95355be38 (patch)
tree9cda0a4af6147fb9ec3554511c812931f697bf91 /Tools
parent58d23e68068996c76cac78887ec67dee68cdbc72 (diff)
downloadcpython-f6e61019ae6b2517c8eb7755f75e4de95355be38.zip
cpython-f6e61019ae6b2517c8eb7755f75e4de95355be38.tar.gz
cpython-f6e61019ae6b2517c8eb7755f75e4de95355be38.tar.bz2
Fixes the upload script to purge the CDN correctly and display success output. (#466)
Diffstat (limited to 'Tools')
-rw-r--r--Tools/msi/uploadrelease.proj2
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/msi/uploadrelease.proj b/Tools/msi/uploadrelease.proj
index 305e84f..75840f2 100644
--- a/Tools/msi/uploadrelease.proj
+++ b/Tools/msi/uploadrelease.proj
@@ -8,6 +8,7 @@
<DownloadUrlBase Condition="'$(DownloadUrlBase)' == ''">$(TARGET)</DownloadUrlBase>
<DownloadUrlBase Condition="'$(DownloadUrlBase)' == ''">/srv/www.python.org/ftp/python</DownloadUrlBase>
<IncludeDoc Condition="'$(IncludeDoc)' == ''">true</IncludeDoc>
+ <BuildForRelease Condition="'$(BuildForRelease)' == ''">true</BuildForRelease>
<DryRun Condition="'$(DryRun)' == ''">false</DryRun>
<Purge Condition="'$(Purge)' == ''">false</Purge>
</PropertyGroup>
@@ -91,6 +92,7 @@ echo." />
<RemoveDir Directories="%(WebInstaller.LayoutDir)" />
<RemoveDir Directories="%(WebInstaller.SourceDir)" />
<RemoveDir Directories="%(WebInstaller.LogDir)" />
+ <Message Text="Successfully downloaded %(WebInstaller.Filename)%(WebInstaller.Extension) layout" Importance="high" />
</Target>
<Target Name="Upload" DependsOnTargets="_ValidateProperties;_RunGpg;_PrintNames;_Upload;_Purge" />