commit 46bc9981a65eddd28bc5549cd97ef40baa3f313e
parent 33fcda4601fcfe6bfade1a0f8d2c44ac758b577a
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 22 Oct 2020 11:02:09 +0200
fix logic to copy file
Diffstat:
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -761,10 +761,20 @@ CODESPELL_FACTORY.addStep(
CODESPELL_FACTORY.addStep(
ShellCommand(
name="tag",
+ description="prepare merchant",
+ descriptionDone="directory created",
+ command=["mkdir", "-p", "merchant/doc/doxygen/"],
+ workdir="/home/codespell/sources/"
+ )
+)
+
+CODESPELL_FACTORY.addStep(
+ ShellCommand(
+ name="tag",
description="copying tag file to merchant",
descriptionDone="tag file copied",
- command=["cp", "taler-exchange.tag", "/home/codespell/merchant/doc/doxygen/taler-exchange.tag"],
- workdir="/home/codespell/sources/exchange/doc/doxygen"
+ command=["cp", "exchange/doc/doxygen/taler-exchange.tag", "merchant/doc/doxygen/taler-exchange.tag"],
+ workdir="/home/codespell/sources/"
)
)