From 113c49457fd6e37d517e2d212e2e6eb21084b4fb Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Mon, 26 May 2025 13:44:59 -0400 Subject: ls tool --- js/src/util/log.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'js/src/util') diff --git a/js/src/util/log.ts b/js/src/util/log.ts index c15e4c59c..776d72839 100644 --- a/js/src/util/log.ts +++ b/js/src/util/log.ts @@ -14,8 +14,8 @@ export namespace Log { export async function file(directory: string) { const outPath = path.join(AppPath.data(directory), "opencode.out.log"); const errPath = path.join(AppPath.data(directory), "opencode.err.log"); - await fs.truncate(outPath); - await fs.truncate(errPath); + await fs.truncate(outPath).catch(() => {}); + await fs.truncate(errPath).catch(() => {}); const out = Bun.file(outPath); const err = Bun.file(errPath); const outWriter = out.writer(); -- cgit v1.2.3