commit 840191dd76971ade2a9d11e1580ea0077cb8f99b
parent 035a2a04fc3cbe53d20e16d1f0e1fdbdaf1cc9af
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Mon, 23 Oct 2017 16:28:58 +0200
fix addStep
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git 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()