taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit fbd5ed8043a96cdc8e347bf94624438d269551ae
parent b54edf83810aff3a9b3f598e15141e4db597ccac
Author: Florian Dold <florian.dold@gmail.com>
Date:   Fri, 11 Oct 2019 15:11:58 +0530

typo

Diffstat:
Mbin/taler-deployment | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/bin/taler-deployment b/bin/taler-deployment @@ -118,12 +118,12 @@ def get_stale_repos(): r_dir = Path.home() / "sources" / r.name s = r_dir / "taler-buildstamp" if not s.exists(): - timestamp[r.name] = time.time() + timestamps[r.name] = time.time() stale.append(r) break - timestamp[r.name] = s.stat().st_mtime + timestamps[r.name] = s.stat().st_mtime for dep in r.deps: - if timestamp[dep] > ts: + if timestamps[dep] > ts: stale.append(r) break return stale