Skip to content

Commit

Permalink
ci: Fix package.json forward-merge resolution [skip release]
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasBoll committed Apr 11, 2024
1 parent 85e3487 commit a24167f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/forward-merge.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ function parseContents(lines) {
* @param file {string}
*/
async function resolveJsonFile(file) {
const contents = await fs.readFile(file).toString();
const contents = (await fs.readFile(file)).toString();

await fs.writeFile(file, resolvePackageJson(contents));
}
Expand Down

0 comments on commit a24167f

Please sign in to comment.