Skip to content

Commit

Permalink
fix(app generator): avoid 'bower install' getting called
Browse files Browse the repository at this point in the history
  • Loading branch information
cueedee committed Mar 17, 2015
1 parent 65696d2 commit e171825
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,12 @@ module.exports = yeoman.generators.Base.extend(
}


, install: function()
, install: function ()
{
this.installDependencies();
this.installDependencies(
{
bower: false
}
);
}
} );

0 comments on commit e171825

Please sign in to comment.