summaryrefslogtreecommitdiffhomepage
path: root/packages/opencode/src/file/watcher.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/opencode/src/file/watcher.ts')
-rw-r--r--packages/opencode/src/file/watcher.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/opencode/src/file/watcher.ts b/packages/opencode/src/file/watcher.ts
index fddff515f..84a80c0fb 100644
--- a/packages/opencode/src/file/watcher.ts
+++ b/packages/opencode/src/file/watcher.ts
@@ -28,7 +28,6 @@ export namespace FileWatcher {
const ignore = (cfg.watcher?.ignore ?? []).map((v) => new Bun.Glob(v))
const watcher = chokidar.watch(Instance.directory, {
ignoreInitial: true,
- awaitWriteFinish: true,
ignored: (filepath) => {
return FileIgnore.match(filepath, {
extra: ignore,