summaryrefslogtreecommitdiffhomepage
path: root/js/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/util')
-rw-r--r--js/src/util/log.ts4
1 files changed, 2 insertions, 2 deletions
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();