Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
fix(app): remove invalid parameter in app-suffix option config
Browse files Browse the repository at this point in the history
option() method doesn't accept a 'required' config parameter.
  • Loading branch information
sunilbandla committed May 25, 2015
1 parent b241982 commit aacd52b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ var Generator = module.exports = function Generator(args, options) {

this.option('app-suffix', {
desc: 'Allow a custom suffix to be added to the module name',
type: String,
required: 'false'
type: String
});
this.env.options['app-suffix'] = this.options['app-suffix'];
this.scriptAppName = this.appname + angularUtils.appName(this);
Expand Down

0 comments on commit aacd52b

Please sign in to comment.