Improve CDN purge script (GH-25251)

This commit is contained in:
Steve Dower 2021-04-07 13:14:00 +01:00 committed by GitHub
parent 7215d1ae25
commit e35dd556e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -65,7 +65,10 @@ PATHS = [
"python-{}-webinstall.exe".format(m.group(0)),
"python-{}-amd64.exe".format(m.group(0)),
"python-{}-amd64-webinstall.exe".format(m.group(0)),
"python-{}-embed-amd64.zip".format(m.group(0)),
"python-{}-embed-win32.zip".format(m.group(0)),
] + ["win32{}/{}".format(REL, f) for f in FILES] + ["amd64{}/{}".format(REL, f) for f in FILES]
PATHS = PATHS + [p + ".asc" for p in PATHS]
print('Purged:')
for n in PATHS: