taler-deployment

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

commit f20cbda7b3136120c3877bdc20322b33ecc2235d
parent dc56556820bac9d6a9492c35fd36b677615a302b
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Wed, 27 Nov 2019 11:01:28 +0100

deploying coverage worker

Diffstat:
Mbin/taler-deployment | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/bin/taler-deployment b/bin/taler-deployment @@ -535,7 +535,13 @@ def bootstrap() -> None: elif envname == "coverage": create_bb_worker("bb-worker", "lcov-worker", "lcov-pass") - + www_path = (Path.home() / "www") + www_path.mkdir(exist_ok=True) + if not os.path.islink(www_path / "merchant"): + os.symlink(Path.home() / "sources" / "merchant" / "doc" / "coverage", www_path / "merchant") + if not os.path.islink(www_path / "exchange"): + os.symlink(Path.home() / "sources" / "exchange" / "doc" / "coverage", www_path / "exchange") + print("Bootstrap finished.") print("Please source the ~/activate file before proceeding.")