You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(config): deterministic home-dir fallback in Path()
os.UserHomeDir()'s error was discarded; when it fails (home env var unset)
home became "", yielding a cwd-relative config path silently read/written
in an unexpected location. New homeDir() helper falls back to the platform
home env var (USERPROFILE/HOME), then os.TempDir(), so Path() is always
absolute. No signature change — callers untouched. Regression tests added.
0 commit comments