]> granicus.if.org Git - python/commitdiff
Fixes the upload script to purge the CDN correctly and display success output. (...
authorSteve Dower <steve.dower@microsoft.com>
Mon, 6 Mar 2017 03:55:12 +0000 (19:55 -0800)
committerGitHub <noreply@github.com>
Mon, 6 Mar 2017 03:55:12 +0000 (19:55 -0800)
Tools/msi/uploadrelease.proj

index 305e84fc2d4b28869f172e259a84ef43ea242765..75840f2f851ecda10d886e1d61c525b7f12ae1b5 100644 (file)
@@ -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" />