From bd6d56cc758a949973a19173a5cea43e1331059b Mon Sep 17 00:00:00 2001 From: Ralf Hubert Date: Wed, 1 Jan 2025 10:22:16 +0100 Subject: [PATCH] DirHasher: exclude .bob-download The .bob-download directory is a temporary directory used only to avoid unnecessary downloads. It should not be used by the build-step and will not be available when building from a bundle. --- pym/bob/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pym/bob/utils.py b/pym/bob/utils.py index 59dc8bf6..6f8cd028 100644 --- a/pym/bob/utils.py +++ b/pym/bob/utils.py @@ -389,6 +389,7 @@ class DirHasher: os.fsencode(".git"), os.fsencode(".portage-cache"), os.fsencode(".svn"), + os.fsencode(".bob-download"), ]) IGNORE_FILES = frozenset([ os.fsencode("BaseDirList.txt"),