From 8aaa7ebdb66a5a8ad4f5183146e2634ec0b72151 Mon Sep 17 00:00:00 2001 From: paisley Date: Thu, 20 Nov 2025 14:35:16 +0800 Subject: [PATCH] fix env file update failed --- python/valuecell/utils/env.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/valuecell/utils/env.py b/python/valuecell/utils/env.py index ca6e40b74..96e5376d9 100644 --- a/python/valuecell/utils/env.py +++ b/python/valuecell/utils/env.py @@ -24,7 +24,8 @@ def get_system_env_dir() -> Path: return base / "ValueCell" # macOS (posix with darwin kernel) if sys_platform_is_darwin(): - return home / "Library" / "ApplicationSupport" / "ValueCell" + # Correct macOS Application Support directory path + return home / "Library" / "Application Support" / "ValueCell" # Linux and other Unix-like return home / ".config" / "valuecell"