From 6832cfe922469486aa38b326e5cda9e70591106d Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Tue, 11 Nov 2025 12:14:31 -0500 Subject: [PATCH] changed dir to .cua --- libs/typescript/cua-cli/bun.lock | 1 + libs/typescript/cua-cli/src/config.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/typescript/cua-cli/bun.lock b/libs/typescript/cua-cli/bun.lock index 4de964c1..50bf2d87 100644 --- a/libs/typescript/cua-cli/bun.lock +++ b/libs/typescript/cua-cli/bun.lock @@ -1,5 +1,6 @@ { "lockfileVersion": 1, + "configVersion": 0, "workspaces": { "": { "name": "cua-cli", diff --git a/libs/typescript/cua-cli/src/config.ts b/libs/typescript/cua-cli/src/config.ts index 1d4b9212..16e93662 100644 --- a/libs/typescript/cua-cli/src/config.ts +++ b/libs/typescript/cua-cli/src/config.ts @@ -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 {}