summaryrefslogtreecommitdiff
path: root/bin/taler-deployment
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-01-24 23:18:59 +0100
committerFlorian Dold <florian@dold.me>2022-01-24 23:18:59 +0100
commit2b2ce8b7e067a57c55f0354f827d2d8ae9118496 (patch)
tree792cd8b075bd7cf61c0843f5831d207ad7d016ca /bin/taler-deployment
parenta2c203e825af77cc77d10883d6a5a2aaa7121dd3 (diff)
downloaddeployment-2b2ce8b7e067a57c55f0354f827d2d8ae9118496.tar.gz
deployment-2b2ce8b7e067a57c55f0354f827d2d8ae9118496.tar.bz2
deployment-2b2ce8b7e067a57c55f0354f827d2d8ae9118496.zip
don't build repos with SKIP tag
Diffstat (limited to 'bin/taler-deployment')
-rwxr-xr-xbin/taler-deployment3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/taler-deployment b/bin/taler-deployment
index aa3c956..94e6522 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -628,6 +628,9 @@ def build() -> None:
stale = get_stale_repos(env_info.repos)
print(f"found stale repos: {stale}")
for r in stale:
+ tag = getattr(cfg, "tag_" + r.name.replace("-", "_"))
+ if tag == "SKIP":
+ continue
p = Path.home() / "sources" / r.name
os.chdir(str(p))
r.builder(r, p)