From 3fc97ec33bbbb008b25fd48e4e08b099ff989d64 Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdxcode@users.noreply.github.com> Date: Mon, 9 Apr 2018 01:18:36 -0700 Subject: [PATCH] fix: add another command to multi examples --- scripts/release_example.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/release_example.js b/scripts/release_example.js index 46a13f3..3fe3231 100644 --- a/scripts/release_example.js +++ b/scripts/release_example.js @@ -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'})