Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/prepare_release.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class ReleasePreparation {
cli.ok(`Release preparation for ${newVersion} complete.\n`);
cli.info(
'To finish the release proposal, run: \n' +
` $ git push -u ${this.upstream} ${`${newVersion}-proposal`}\n` +
` $ git push -u ${this.upstream} v${newVersion}-proposal\n` +
'Finally, proceed to Jenkins and begin the following CI jobs:\n' +
' * https://ci.nodejs.org/job/node-test-pull-request/\n' +
' * https://ci.nodejs.org/job/citgm-smoker/');
Expand Down Expand Up @@ -381,7 +381,7 @@ class ReleasePreparation {
});
messageBody.push('Notable changes:\n\n');
messageBody.push(notableChanges);
messageBody.push('\n\nPR-URL: TODO');
messageBody.push('\nPR-URL: TODO');

// Create commit and then allow releaser to amend.
runSync('git', ['add', '.']);
Expand Down