File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,13 @@ def purge(url):
209209 u = UPLOAD_URL + f .name
210210 UPLOADS .append ((f , u , url2path (u )))
211211
212- # pymanager.appinstaller may be uploaded to either the preview URL or both.
212+ # pymanager.appinstaller is always uploaded to the pymanager-preview URL,
213+ # and where the file specifies a different location, is also updated as its
214+ # own filename. Later validation checks that the URL listed in the file is
215+ # one of the planned uploads. If we ever need to release an update for the
216+ # "main" line but not prereleases, this code would have to be modified
217+ # (but more likely we'd just immediately modify or replace
218+ # 'pymanager.appinstaller' on the download server).
213219 f = UPLOAD_DIR / "pymanager.appinstaller"
214220 if f .is_file ():
215221 u = UPLOAD_URL + "pymanager-preview.appinstaller"
You can’t perform that action at this time.
0 commit comments