commit a0d5a2c353a66b727e4e90646203e743827294f0
parent a56150849855716820b1c4f771b5b94716e66a00
Author: Florian Dold <florian.dold@gmail.com>
Date: Fri, 20 Dec 2019 01:49:15 +0100
typo
Diffstat:
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/bin/taler-deployment b/bin/taler-deployment
@@ -119,9 +119,7 @@ def default_configure(*extra):
extra_list = list(extra)
if int(os.environ.get("TALER_COVERAGE")):
extra_list.append("--enable-coverage")
- subprocess.run(
- ["./configure", f"--prefix={pfx}"] + extra_list, check=True
- )
+ subprocess.run(["./configure", f"--prefix={pfx}"] + extra_list, check=True)
def pyconfigure(*extra):
@@ -192,7 +190,7 @@ def build_merchant(r, p):
f"--with-libgnurl={pfx}",
f"--with-microhttpd={pfx}",
f"--with-exchange={pfx}",
- f"--with-gnunet={pfx)}",
+ f"--with-gnunet={pfx}",
"--disable-doc",
)
subprocess.run(["make", "install"], check=True)
@@ -479,14 +477,11 @@ def checkout_repos(r):
r_dir = home / "sources" / r.name
if not r_dir.exists():
r_dir.mkdir(parents=True, exist_ok=True)
- subprocess.run(
- ["git", "-C", str(sources), "clone", r.url], check=True
- )
+ subprocess.run(["git", "-C", str(sources), "clone", r.url], check=True)
tag = getattr(cfg, "tag_" + r.name)
subprocess.run(["git", "-C", str(r_dir), "fetch"], check=True)
subprocess.run(
- ["git", "-C", str(r_dir), "checkout", "-q", "-f", tag, "--"],
- check=True,
+ ["git", "-C", str(r_dir), "checkout", "-q", "-f", tag, "--"], check=True,
)