mirror of
https://github.com/crewAIInc/crewAI.git
synced 2025-12-16 04:18:35 +00:00
fix: use 'db' instead of '.db' for storage directory
This commit is contained in:
@@ -15,7 +15,7 @@ def db_storage_path() -> str:
|
||||
if storage_dir:
|
||||
data_dir = Path(storage_dir)
|
||||
else:
|
||||
data_dir = Path.cwd() / ".db"
|
||||
data_dir = Path.cwd() / "db"
|
||||
|
||||
data_dir.mkdir(parents=True, exist_ok=True)
|
||||
return str(data_dir)
|
||||
|
||||
Reference in New Issue
Block a user