taler-deployment

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

commit 9821c4a8e8a13fa8148bda791cab9970486b9222
parent e0bc9c7cf1d266d5ae8615f49bac7bce98ed0aaf
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Wed, 27 Nov 2019 17:35:09 +0100

path

Diffstat:
Mbin/taler-deployment | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/taler-deployment b/bin/taler-deployment @@ -540,9 +540,9 @@ def bootstrap() -> None: 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") + os.symlink(Path.home() / "sources" / "merchant" / "coverage_report", www_path / "merchant") if not os.path.islink(www_path / "exchange"): - os.symlink(Path.home() / "sources" / "exchange" / "doc" / "coverage", www_path / "exchange") + os.symlink(Path.home() / "sources" / "exchange" / "coverage_report", www_path / "exchange") print("Bootstrap finished.")