From ae529879d0feb0c416fe9b84b79b6334ca06a612 Mon Sep 17 00:00:00 2001 From: James Downie Date: Mon, 30 Jun 2025 20:21:33 +1000 Subject: [PATCH] Lazy commit on . --- jdownie/repo/repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jdownie/repo/repo b/jdownie/repo/repo index 8fc0196..826865a 100755 --- a/jdownie/repo/repo +++ b/jdownie/repo/repo @@ -27,7 +27,7 @@ def get_latest_git_mtime(repos: dict) -> float: def is_repo_status_outdated(repos): latest_mtime = get_latest_git_mtime(repos) last_mtime = 0 - if os.path.exists(filepath("mtime")): + if os.path.exists(filepath("status")) and os.path.exists(filepath("mtime")): with open(filepath("mtime"), "rt") as fin: content = fin.read().strip() print(f"content: {content}")