From d8ebbbe9e17346a6a811f2bb4f66eae41ddeb7b8 Mon Sep 17 00:00:00 2001 From: binekrasik Date: Mon, 18 May 2026 00:14:49 +0200 Subject: [PATCH] chore: fix build --- .gitignore | 1 + src/gui/Alert.ts | 2 +- src/shell/Wush.ts | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0eee881..f1c99de 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,4 @@ bun.lock # temp files slop.md +.env*.local diff --git a/src/gui/Alert.ts b/src/gui/Alert.ts index 14f2d71..4c548f2 100644 --- a/src/gui/Alert.ts +++ b/src/gui/Alert.ts @@ -18,6 +18,6 @@ export class Alert { } Show(time: number = -1): void { - alert(`${this.title} [${this.severity}]: ${this.description}`) + alert(`${this.title} [${this.severity}]: ${this.description} (time: ${time})`) } } diff --git a/src/shell/Wush.ts b/src/shell/Wush.ts index 9c427f9..753d26c 100644 --- a/src/shell/Wush.ts +++ b/src/shell/Wush.ts @@ -41,8 +41,8 @@ export class Wush extends Shell { */ private execExitCode: number = 0 - // workers - private workersAllowed: boolean = false + // todo: workers + // private workersAllowed: boolean = false // streams readonly stdin: SimpleStream