summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2017-11-04 22:21:17 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2017-11-04 22:21:17 +0100
commit0e25c3fa48c9e2bb240ec5046c07c5b25e3440f1 (patch)
tree7ce330b78fd7e872779a764a219fcccc856af7f9
parent8895eb97be7f86d751c518714af4b631229a774c (diff)
downloaddeployment-0e25c3fa48c9e2bb240ec5046c07c5b25e3440f1.tar.gz
deployment-0e25c3fa48c9e2bb240ec5046c07c5b25e3440f1.tar.bz2
deployment-0e25c3fa48c9e2bb240ec5046c07c5b25e3440f1.zip
fix parentheses
-rw-r--r--buildbot/master.cfg8
1 files changed, 4 insertions, 4 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index a35601d..6824e0f 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -161,7 +161,7 @@ DEBUG_FACTORY.addStep(ShellCommand(
LINT_FACTORY = util.BuildFactory()
LINT_FACTORY.addStep(git_step(
- "git://git.taler.net/bank.git")
+ "git://git.taler.net/bank.git"))
LINT_FACTORY.addStep(ShellCommand(
name="code linter",
description="running static analysis",
@@ -173,7 +173,7 @@ LINT_FACTORY.addStep(ShellCommand(
LCOV_FACTORY = util.BuildFactory()
LCOV_FACTORY.addStep(git_step(
- 'git://git.taler.net/deployment.git')
+ 'git://git.taler.net/deployment.git'))
LCOV_FACTORY.addStep(ShellCommand(
name="invalidation",
description="Invalidating timestamps",
@@ -191,7 +191,7 @@ LCOV_FACTORY.addStep(ShellCommand(
SWITCHER_FACTORY = util.BuildFactory()
SWITCHER_FACTORY.addStep(git_step(
- 'git://git.taler.net/deployment.git')
+ 'git://git.taler.net/deployment.git'))
SWITCHER_FACTORY.addStep(ShellCommand(
name="build",
description="Building inactive blue-green party.",
@@ -228,7 +228,7 @@ SELENIUM_FACTORY.addStep(ShellCommand(
# this factory builds {api,docs}.taler.net AND {www,stage}.taler.net
DOC_FACTORY = util.BuildFactory()
DOC_FACTORY.addStep(git_step(
- "git://git.taler.net/deployment.git")
+ "git://git.taler.net/deployment.git"))
DOC_FACTORY.addStep(ShellCommand(
name="build docs",
description="Building documentation.",