Skip to content

Commit 7b179dd

Browse files
committed
rename release notes folder
1 parent 06660a5 commit 7b179dd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/release/proposal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,15 +114,15 @@ function capture (cmd) {
114114

115115
// Write release notes to a file that can be copied to the GitHub release.
116116
function ready () {
117-
const notesDir = path.join(__dirname, '..', '..', '.github', 'notes')
117+
const notesDir = path.join(__dirname, '..', '..', '.github', 'release_notes')
118118
const notesFile = path.join(notesDir, `${newVersion}.md`)
119119
const lineDiff = capture(`${diffCmd} --markdown=true v${releaseLine}.x master`)
120120

121121
fs.mkdirSync(notesDir, { recursive: true })
122122
fs.writeFileSync(notesFile, lineDiff)
123123

124124
success('Release proposal is ready.')
125-
success(`Changelog at .github/notes/${newVersion}.md`)
125+
success(`Changelog at .github/release_notes/${newVersion}.md`)
126126

127127
process.exit(0)
128128
}

0 commit comments

Comments
 (0)