Skip to content

Commit

Permalink
fix(cli) Fixes issue with --output option for concerto print
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Simeon <[email protected]>
  • Loading branch information
Jerome Simeon authored and jeromesimeon committed Dec 16, 2021
1 parent aeb54c3 commit be431f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/concerto-cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ require('yargs')
type: 'string'
});
}, (argv) => {
return Commands.print(argv.input, argv.model, argv.all, argv.output)
return Commands.print(argv.input, argv.output)
.then((result) => {
if (result) {
Logger.info(result);
Expand Down

0 comments on commit be431f1

Please sign in to comment.