-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
Fixes the upload script to purge the CDN correctly and display succes… #466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -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> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This determines whether the version is "3.6.1rc1" (building for release) or "3.6.1dev1234" (not building for release).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And if we have the wrong version number, we purge the wrong paths from the CDN.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Passes my sanity check, but I can't actually test it and am not terribly familiar with it anyway.
…s output. (python#466) (python#497) (cherry picked from commit e544b40)
…s output.