We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3ff778 commit 8f3625eCopy full SHA for 8f3625e
scripts/ci/poll_release_notes.js
@@ -56,8 +56,10 @@ async function pollReleaseNotes() {
56
return;
57
}
58
if (matches.includes(`<a name="${version}">`) && !process.env.FORCE) {
59
- console.warn(`${version} was found but is not the latest version. ` +
60
- `Set the force option to true to publish anyway.`);
+ console.warn(
+ `${version} was found but is not the latest version. ` +
61
+ `Set the force option to true to publish anyway.`
62
+ );
63
process.exit(1);
64
65
console.log(`Didn't find ${version} on release notes page.`);
0 commit comments