commit 0b319f1ed8f8586866521f01447ce62bb7ca9cce
parent 870e8af0444404fba86d27302eedab2204b45b27
Author: Florian Dold <florian.dold@gmail.com>
Date: Thu, 10 Oct 2019 23:08:35 +0530
typo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/taler-deployment b/bin/taler-deployment
@@ -75,7 +75,7 @@ def bootstrap(envname):
r_dir.mkdir(parents=True, exist_ok=True)
subprocess.run(["git", "-C", sources.as_posix(), "clone", r_url], check=True)
tag = getattr(cfg, "tag_" + r_name)
- subprocess.run(["git", "-C", sources.as_posix(), "fetch"], check=True)
+ subprocess.run(["git", "-C", r_dir.as_posix(), "fetch"], check=True)
subprocess.run(
["git", "-C", r_dir.as_posix(), "checkout", "-q", "-f", tag, "--"],
check=True,