summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2021-04-07 12:14:00 (GMT)
committerGitHub <noreply@github.com>2021-04-07 12:14:00 (GMT)
commite35dd556e1adb4fc8b83e5b75ac59e428a8b5460 (patch)
treecc46e7f3edd650ad0581544b275cdac7d7237fe9 /Tools
parent7215d1ae25525c92b026166f9d5cac85fb1defe1 (diff)
downloadcpython-e35dd556e1adb4fc8b83e5b75ac59e428a8b5460.zip
cpython-e35dd556e1adb4fc8b83e5b75ac59e428a8b5460.tar.gz
cpython-e35dd556e1adb4fc8b83e5b75ac59e428a8b5460.tar.bz2
Improve CDN purge script (GH-25251)
Diffstat (limited to 'Tools')
-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 27b6b05..41be069 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: