Skip to content

Commit ab7f016

Browse files
committed
Writing patch file incorrectly buffers
the write of writeStream in fs has buffer and needs a callback to know when it's done. I seem to be experiencing cases where the patch file is empty. The simple fix was to move this to the sync variant. fixes #510
1 parent 61dc22b commit ab7f016

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lint/private/patcher.mjs

+3-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,9 @@ async function main(args, sandbox) {
8181
console.error(ret.error);
8282
process.exit(1);
8383
}
84+
8485

85-
const diffOut = fs.createWriteStream(config.output);
86+
const diffOut = fs.openSync(config.output, "w");
8687
const diffBin = process.env["DIFF_BIN"]
8788
? path.join(process.env["JS_BINARY__RUNFILES"], process.env["DIFF_BIN"])
8889
: "diff";
@@ -101,7 +102,7 @@ async function main(args, sandbox) {
101102
}
102103
);
103104
debug(results.stdout);
104-
diffOut.write(results.stdout);
105+
fs.writeSync(diffOut, results.stdout);
105106
if (results.error) {
106107
console.error(results.error);
107108
}

0 commit comments

Comments
 (0)