Skip to content

Commit

Permalink
fix: auto_update_v8 README regex (denoland#1061)
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Aug 27, 2022
1 parent 746f7a3 commit 1f3e0e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/auto_update_v8.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ console.log(`Updated to version ${newVersion}`);
// Update version in readme
let readme = Deno.readTextFileSync("README.md");
readme = readme.replace(
/V8 Version: .*$/,
/V8 Version: \S+/,
`V8 Version: ${newVersion}`,
);
Deno.writeTextFileSync("README.md", readme);
Expand Down

0 comments on commit 1f3e0e1

Please sign in to comment.