From c196e1f96f79122ef1be62cbb5a5ddd706eb5ae7 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 1 Jan 2014 04:31:52 +0000 Subject: [PATCH] =?UTF-8?q?Give=20buildargs=20a=20default=20value=20of=20?= =?UTF-8?q?=E2=80=9C=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75512 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- buildbot/master.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot/master.cfg b/buildbot/master.cfg index 29f974d0..21c39abe 100644 --- a/buildbot/master.cfg +++ b/buildbot/master.cfg @@ -190,7 +190,7 @@ def makeFactory(port, buildType='buildOnly', pyVer='2.7'): if buildType == 'dist': cmd += ' bdist_egg --upload' - cmd = cmd.split() + [Property('buildargs')] + cmd = cmd.split() + [Property('buildargs', default='')] factory.addStep(ShellCommand(command=cmd, workdir="Phoenix", description="building", descriptionDone="build")) return factory