gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-deployment] branch master updated: add debug logic


From: gnunet
Subject: [taler-deployment] branch master updated: add debug logic
Date: Thu, 22 Apr 2021 12:35:54 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new 796b04e  add debug logic
796b04e is described below

commit 796b04ec27a0e757f08de1fc1d33710dede92712
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Thu Apr 22 12:35:52 2021 +0200

    add debug logic
---
 bin/taler-deployment | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/bin/taler-deployment b/bin/taler-deployment
index b3da864..6b1ec15 100755
--- 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

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]