summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-12-15 17:06:25 +0100
committerChristian Grothoff <christian@grothoff.org>2019-12-15 17:06:25 +0100
commitad0bf7c588d7dbe726273660edcb5c2f4a212e41 (patch)
tree4f7fcbe83f6cb1a0a358d86c522d44053569c856 /buildbot/master.cfg
parent60ccd49b2e807869b34e940a7302d148ac12ccbb (diff)
downloaddeployment-ad0bf7c588d7dbe726273660edcb5c2f4a212e41.tar.gz
deployment-ad0bf7c588d7dbe726273660edcb5c2f4a212e41.tar.bz2
deployment-ad0bf7c588d7dbe726273660edcb5c2f4a212e41.zip
fix workdir
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 37cafc2..56d6f86 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -316,15 +316,15 @@ def update_deployment(factory):
name="clean old deployment",
description="cleaning previous deployment repository",
descriptionDone="Deployment removed",
- command=["rm", "-rf", "$HOME/deployment"],
- workdir="$HOME/"
+ command=["rm", "-rf", "deployment"],
+ workdir="../.."
))
factory.addStep(ShellCommand(
name="update deployment",
description="fetching latest deployment repository",
descriptionDone="Deployment updated",
command=["git", "clone", "git://git.taler.net/deployment"],
- workdir="$HOME/"
+ workdir="../.."
))
# Create a FACTORY with a deployment.git checkout as the first step.