Skip to content

Commit

Permalink
Merge pull request tidev#5504 from cb1kenobi/timob-16675
Browse files Browse the repository at this point in the history
[TIMOB-16675] Fixed the --url param being required when prompting is turned off
  • Loading branch information
ayeung committed Mar 24, 2014
2 parents f49327a + 0f6cea6 commit 7366154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/commands/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ exports.config = function config(logger, config, cli) {
promptLabel: __('Your company/personal URL')
}));
},
required: true,
required: !!cli.argv.prompt,
validate: function (value, callback) {
callback(null, value);
}
Expand Down

0 comments on commit 7366154

Please sign in to comment.