taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit ad0bf7c588d7dbe726273660edcb5c2f4a212e41
parent 60ccd49b2e807869b34e940a7302d148ac12ccbb
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 15 Dec 2019 17:06:25 +0100

fix workdir

Diffstat:
Mbuildbot/master.cfg | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 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.