diff options
| author | Dax Raad <[email protected]> | 2025-05-20 11:11:06 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-26 12:40:17 -0400 |
| commit | 9b564f0b73d099d40c79517213211ba81b3312c6 (patch) | |
| tree | 39ef5c2528b7e7167aeba059ce13bcbc903f2397 /js/src/app | |
| parent | 2437ce3f8b79a7f9d987862b633f3340bfa2c1c4 (diff) | |
| download | opencode-9b564f0b73d099d40c79517213211ba81b3312c6.tar.gz opencode-9b564f0b73d099d40c79517213211ba81b3312c6.zip | |
tool meta
Diffstat (limited to 'js/src/app')
| -rw-r--r-- | js/src/app/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/app/index.ts b/js/src/app/index.ts index 472b39400..8f0241392 100644 --- a/js/src/app/index.ts +++ b/js/src/app/index.ts @@ -12,7 +12,6 @@ export namespace App { const ctx = Context.create<Info>("app"); export async function create(input: { directory: string }) { - Log.file(input.directory); log.info("creating"); const config = await Config.load(input.directory); @@ -20,6 +19,7 @@ export namespace App { const dataDir = AppPath.data(input.directory); await fs.mkdir(dataDir, { recursive: true }); log.info("created", { path: dataDir }); + Log.file(input.directory); const services = new Map<any, any>(); |
