From f58bb9e355b9bb263231614dd71e72be4cae2903 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 31 May 2022 17:34:18 -0700 Subject: [PATCH] little tweaks --- build.py | 3 ++- buildtools/build_wxwidgets.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index be0312e9..cd16a8c1 100755 --- a/build.py +++ b/build.py @@ -1047,7 +1047,8 @@ def cmd_docset_py(options, args): tarball.add(opj('dist', name+'.docset'), name+'.docset', filter=_setTarItemPerms) if options.upload: - uploadPackage(tarfilename, options) + uploadPackage(tarfilename, options, keep=5, + mask='%s-docset-%s*' % (baseName, cfg.VER_MAJOR)) msg("Docset file built at %s" % tarfilename) diff --git a/buildtools/build_wxwidgets.py b/buildtools/build_wxwidgets.py index 95acb603..ea57e19d 100644 --- a/buildtools/build_wxwidgets.py +++ b/buildtools/build_wxwidgets.py @@ -315,7 +315,7 @@ def main(wxDir, args): else: arch = "x86_64" else: - # otherwise assume the user klnows what they are doing and just use what they gave us. + # otherwise assume the user knows what they are doing and just use what they gave us. arch = options.mac_universal_binary configure_opts.append("--enable-universal_binary=%s" % arch)