summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2017-10-23 16:28:58 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2017-10-23 16:28:58 +0200
commit840191dd76971ade2a9d11e1580ea0077cb8f99b (patch)
tree3480942c56875ee9d9c1fca526e2a087269410e2
parent035a2a04fc3cbe53d20e16d1f0e1fdbdaf1cc9af (diff)
downloaddeployment-840191dd76971ade2a9d11e1580ea0077cb8f99b.tar.gz
deployment-840191dd76971ade2a9d11e1580ea0077cb8f99b.tar.bz2
deployment-840191dd76971ade2a9d11e1580ea0077cb8f99b.zip
fix addStep
-rw-r--r--buildbot/master.cfg8
1 files changed, 4 insertions, 4 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 786b10f..12ebd17 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -123,10 +123,10 @@ wallet_factory.addStep(ShellCommand(name="test",
workdir="build/"))
debug_factory = util.BuildFactory()
-debug_factory.addStep(name="echo debug",
- description="just echoing a word",
- descriptionDone="builder responded",
- command=["echo", "I'm here!"])
+debug_factory.addStep(ShellCommand(name="echo debug",
+ description="just echoing a word",
+ descriptionDone="builder responded",
+ command=["echo", "I'm here!"]))
lcov_factory = util.BuildFactory()