From 35fa39208dce5b337cddc50c2cad645682fe61b3 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sun, 7 May 2017 11:45:29 -0700 Subject: [PATCH] =?UTF-8?q?Make=20the=20dist=20dir=20if=20it=20doesn?= =?UTF-8?q?=E2=80=99t=20exist?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.py | 4 ++++ buildbot/master.cfg | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index 849a8fda..37ce15d0 100755 --- a/build.py +++ b/build.py @@ -1482,6 +1482,10 @@ def cmd_install_py(options, args): def cmd_build_pdbzip(options, args): if isWindows and options.relwithdebug: cmdTimer = CommandTimer('build_pdbzip') + + if not os.path.exists('dist'): + os.mkdir('dist') + cfg = Config() filenames = glob.glob('./wx/*.pdb') if not filenames: diff --git a/buildbot/master.cfg b/buildbot/master.cfg index b17b031b..84570c85 100644 --- a/buildbot/master.cfg +++ b/buildbot/master.cfg @@ -192,7 +192,7 @@ c['schedulers'].append( ForceScheduler( # incrementals won't work. # # buildargs: Adds additional flags or commands to the build.py command -# line. For example, adding '--release' will (in theory) switch +# line. For example, adding '--releases' will (in theory) switch # the "dist-*" builders from making snapshot builds to making release # builds.