changed dir to .cua

This commit is contained in:
Dillon DuPont
2025-11-11 12:14:31 -05:00
parent f2dfe865fd
commit 6832cfe922
2 changed files with 2 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
{
"lockfileVersion": 1,
"configVersion": 0,
"workspaces": {
"": {
"name": "cua-cli",

View File

@@ -5,7 +5,7 @@ export const CALLBACK_HOST = "127.0.0.1";
export function getConfigDir(): string {
const home = Bun.env.HOME || Bun.env.USERPROFILE || ".";
const dir = `${home}/.config/cua`;
const dir = `${home}/.cua`;
try {
Bun.spawnSync(["mkdir", "-p", dir]);
} catch {}