fix: use .moltbot for device identity directory

This commit is contained in:
Amar 2026-01-28 07:47:38 +00:00
parent 9688454a30
commit 54b718aee6

View File

@ -17,7 +17,7 @@ type StoredIdentity = {
createdAtMs: number;
};
const DEFAULT_DIR = path.join(os.homedir(), ".clawdbot", "identity");
const DEFAULT_DIR = path.join(os.homedir(), ".moltbot", "identity");
const DEFAULT_FILE = path.join(DEFAULT_DIR, "device.json");
function ensureDir(filePath: string) {