commit 99478a6bafd5b8e9e7f0a2e23eaaa7a72a8b89b0
parent 99abcdc78a30d9f0d6025bc7f9cc931226408241
Author: MS <ms@taler.net>
Date: Thu, 23 Jul 2020 17:15:38 +0200
no hyphens in tag names
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/taler-deployment b/bin/taler-deployment
@@ -527,7 +527,7 @@ def checkout_repos(cfg, repos):
if not r_dir.exists():
r_dir.mkdir(parents=True, exist_ok=True)
subprocess.run(["git", "-C", str(sources), "clone", r.url], check=True)
- tag = getattr(cfg, "tag_" + r.name)
+ tag = getattr(cfg, "tag_" + r.name.replace("-", "_"))
subprocess.run(["git", "-C", str(r_dir), "fetch"], check=True)
subprocess.run(
["git", "-C", str(r_dir), "checkout", "-q", "-f", tag, "--"], check=True,