diff options
| author | Dax Raad <[email protected]> | 2025-07-02 11:15:12 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-07-02 11:15:12 -0400 |
| commit | 8bbbc07aff243560290c988905057a45a747978a (patch) | |
| tree | f97b3dabaf8333084651a81d94e42ce12fd7c6cc | |
| parent | 75a21ba3ce76b4e8fe42fa370795a7322280d30d (diff) | |
| download | opencode-8bbbc07aff243560290c988905057a45a747978a.tar.gz opencode-8bbbc07aff243560290c988905057a45a747978a.zip | |
fix filewatcher not closing cleanly
| -rw-r--r-- | packages/opencode/src/file/watch.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/src/file/watch.ts b/packages/opencode/src/file/watch.ts index 8bc70cd83..eec450edf 100644 --- a/packages/opencode/src/file/watch.ts +++ b/packages/opencode/src/file/watch.ts @@ -40,7 +40,7 @@ export namespace FileWatcher { }, ) return { watcher } - } finally { + } catch { return {} } }, |
