cherrypick-interactive 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +1 -1
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -368,7 +368,7 @@ async function main() {
|
|
|
368
368
|
await setPkgVersion(argv['version-file'], computedNextVersion)
|
|
369
369
|
await git.add([argv['version-file']])
|
|
370
370
|
const msg = argv['version-commit-message'].replace('{{version}}', computedNextVersion)
|
|
371
|
-
await git.commit
|
|
371
|
+
await git.raw(['commit', '--no-verify', '-m', msg]);
|
|
372
372
|
|
|
373
373
|
log(chalk.green(`✓ package.json updated and committed: ${msg}`))
|
|
374
374
|
|