Skip to content

Commit

Permalink
Fix incorrect argv mapping (#340) (#341)
Browse files Browse the repository at this point in the history
* Debug minimize semver change

* Reverse incorrect minimize-semver-change mapping
  • Loading branch information
JAForbes authored May 13, 2022
1 parent 5a565bd commit 9672775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1981,7 +1981,7 @@ export async function main(){
if( preflights[subcommand] ) await preflight(argv._, argv)

argv = { contributors: true, thanks: true, ...argv }
argv = { 'minimize-semver-change': argv.minimizeSemverChange, ...argv }
argv = { minimizeSemverChange: argv['minimize-semver-change'], ...argv }

verbose(argv)
await f(argv, ...argv._)
Expand Down

0 comments on commit 9672775

Please sign in to comment.