8000 Improve CDN purge script (GH-25251) · python/cpython@e35dd55 · GitHub
[go: up one dir, main page]

Skip to content

Commit e35dd55

Browse files
authored
Improve CDN purge script (GH-25251)
1 parent 7215d1a commit e35dd55

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Tools/msi/purge.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,10 @@
6565
"python-{}-webinstall.exe".format(m.group(0)),
6666
"python-{}-amd64.exe".format(m.group(0)),
6767
"python-{}-amd64-webinstall.exe".format(m.group(0)),
68+
"python-{}-embed-amd64.zip".format(m.group(0)),
69+
"python-{}-embed-win32.zip".format(m.group(0)),
6870
] + ["win32{}/{}".format(REL, f) for f in FILES] + ["amd64{}/{}".format(REL, f) for f in FILES]
71+
PATHS = PATHS + [p + ".asc" for p in PATHS]
6972

7073
print('Purged:')
7174
for n in PATHS:

0 commit comments

Comments
 (0)
0