Skip to content
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.

Commit

Permalink
fix: add another command to multi examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Apr 9, 2018
1 parent ad64314 commit 3fc97ec
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/release_example.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ module.exports = (_, options) => {
})

sh.exec(`oclif ${type} --force --defaults ${options}`)
if (type === 'multi') {
sh.exec(`oclif command goodbye --force --defaults ${options}`)
}
sh.exec('git add -A')
try {
execa.sync('git', ['commit', '-m', `${releaseType === 'patch' ? 'fix' : 'feat'}: oclif v${version}\n\n${notes}`], {stdio: 'inherit'})
Expand Down

0 comments on commit 3fc97ec

Please sign in to comment.