ignore: read deleted files

This commit is contained in:
Dax Raad 2025-07-01 20:45:50 -04:00
parent 6389858d41
commit 9e75e3ed18

View file

@ -102,6 +102,7 @@ export namespace File {
const full = path.join(app.path.cwd, file)
const content = await Bun.file(full)
.text()
.catch(() => "")
.then((x) => x.trim())
if (app.git) {
const rel = path.relative(app.path.root, full)