fix(core): normalize file.status paths relative to instance dir (#14207)

This commit is contained in:
Shantur Rathore
2026-02-19 20:17:36 +00:00
committed by GitHub
parent b64d0768ba
commit 190d2957eb

View File

@@ -482,10 +482,13 @@ export namespace File {
}
}
return changedFiles.map((x) => ({
...x,
path: path.relative(Instance.directory, x.path),
}))
return changedFiles.map((x) => {
const full = path.isAbsolute(x.path) ? x.path : path.join(Instance.directory, x.path)
return {
...x,
path: path.relative(Instance.directory, full),
}
})
}
export async function read(file: string): Promise<Content> {