From 312cef8633852288ef54c425632a4a9326694826 Mon Sep 17 00:00:00 2001 From: unclecode Date: Sun, 1 Feb 2026 06:22:16 +0000 Subject: [PATCH] Fix PR #1296: restore .crawl4ai subfolder in VersionManager path --- crawl4ai/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crawl4ai/utils.py b/crawl4ai/utils.py index 3128050c..2b80c21b 100644 --- a/crawl4ai/utils.py +++ b/crawl4ai/utils.py @@ -226,7 +226,7 @@ def merge_chunks( class VersionManager: def __init__(self): - self.home_dir = Path(os.getenv("CRAWL4_AI_BASE_DIRECTORY", Path.home())) + self.home_dir = Path(os.getenv("CRAWL4_AI_BASE_DIRECTORY", Path.home())) / ".crawl4ai" self.version_file = self.home_dir / "version.txt" def get_installed_version(self):