gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-deployment] branch master updated: fix location


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: fix location
Date: Thu, 10 Oct 2019 19:37:13 +0200

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

dold pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new 870e8af  fix location
870e8af is described below

commit 870e8af0444404fba86d27302eedab2204b45b27
Author: Florian Dold <address@hidden>
AuthorDate: Thu Oct 10 23:07:09 2019 +0530

    fix location
---
 bin/taler-deployment | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/bin/taler-deployment b/bin/taler-deployment
index 4b21384..4c18ec9 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -67,13 +67,15 @@ def bootstrap(envname):
         ("backoffice", "git://git.taler.net/backoffice"),
     ]
 
+    sources = home / "sources"
+
     for (r_name, r_url) in repos:
         r_dir = home / "sources" / r_name
         if not r_dir.exists():
             r_dir.mkdir(parents=True, exist_ok=True)
-            subprocess.run(["git", "-C", r_dir.as_posix(), "clone", r_url], 
check=True)
+            subprocess.run(["git", "-C", sources.as_posix(), "clone", r_url], 
check=True)
         tag = getattr(cfg, "tag_" + r_name)
-        subprocess.run(["git", "-C", r_dir.as_posix(), "fetch"], check=True)
+        subprocess.run(["git", "-C", sources.as_posix(), "fetch"], check=True)
         subprocess.run(
             ["git", "-C", r_dir.as_posix(), "checkout", "-q", "-f", tag, "--"],
             check=True,

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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