From 5f86e90dd7cbe5aaf6bd01af4460f1292888fdfc Mon Sep 17 00:00:00 2001 From: Joscha Date: Mon, 3 Nov 2025 02:28:02 +0100 Subject: [PATCH] Fix Files not remembering files sometimes --- pasch/modules/files.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pasch/modules/files.py b/pasch/modules/files.py index 18fe9e8..777c5ba 100644 --- a/pasch/modules/files.py +++ b/pasch/modules/files.py @@ -135,6 +135,7 @@ class Files(Module): cur_hash = hash_file(path) target_hash = hash_data(content) if cur_hash == target_hash: + self._file_db.add_hash(path, target_hash) return relative_path = path.relative_to(self._root, walk_up=True)