commit 796b04ec27a0e757f08de1fc1d33710dede92712
parent 8a6db7c06f39876df4f31b24f4f12a00a7d4dc01
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 22 Apr 2021 12:35:52 +0200
add debug logic
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/bin/taler-deployment b/bin/taler-deployment
@@ -268,11 +268,12 @@ def build_docs(r, p):
def get_repos(envname):
"""Get a list of repos (topologically sorted) that should be build for the
given environment"""
+ print(f"Loading return repositories for {envname}.", file=sys.stderr)
if envname in ("demochecker",):
return []
- if envname == "docs-builder":
+ if envname in ("docs-builder",):
return [Repo("docs", "git://gnunet.org/docs.git", [], build_docs)]
- if envname in ("coverage", "integrationtest"):
+ if envname in ("coverage", "integrationtest",):
return [
Repo(
"libmicrohttpd",
@@ -455,6 +456,7 @@ def load_envcfg():
envcfg_path = Path.home() / "envcfg.py"
if not os.path.isfile(envcfg_path):
return None
+ print(f"Loading configuration from {envcfg_path}.", file=sys.stderr)
cfgtext = envcfg_path.read_text()
exec(cfgtext, cfg.__dict__)
return cfg