summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-04-25 15:19:32 (GMT)
committerGitHub <noreply@github.com>2021-04-25 15:19:32 (GMT)
commit2178afffc0e94613ff41baf7ce2d4bea94278a47 (patch)
treeb0372c4b0b2fb5c660aeaf3da4a6c89b808ce249
parent9a165399aec930f27639dd173426ccc33586662b (diff)
downloadcpython-2178afffc0e94613ff41baf7ce2d4bea94278a47.zip
cpython-2178afffc0e94613ff41baf7ce2d4bea94278a47.tar.gz
cpython-2178afffc0e94613ff41baf7ce2d4bea94278a47.tar.bz2
Improve CDN purge script (GH-25251) (#25254)
(cherry picked from commit e35dd556e1adb4fc8b83e5b75ac59e428a8b5460) Co-authored-by: Steve Dower <steve.dower@python.org> Co-authored-by: Steve Dower <steve.dower@python.org>
-rw-r--r--Tools/msi/purge.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools/msi/purge.py b/Tools/msi/purge.py
index a8b8f4d..c543cac 100644
--- a/Tools/msi/purge.py
+++ b/Tools/msi/purge.py
@@ -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: