diff options
author | Steve Dower <steve.dower@python.org> | 2021-04-07 12:14:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-07 12:14:00 (GMT) |
commit | e35dd556e1adb4fc8b83e5b75ac59e428a8b5460 (patch) | |
tree | cc46e7f3edd650ad0581544b275cdac7d7237fe9 /Tools | |
parent | 7215d1ae25525c92b026166f9d5cac85fb1defe1 (diff) | |
download | cpython-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.py | 3 |
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: |