Skip to content

Commit

Permalink
Merge pull request #497 from kingcody/fix/bootstrap-prompts
Browse files Browse the repository at this point in the history
fix(gen): use bool for bootstrap filters
  • Loading branch information
DaftMonk committed Aug 29, 2014
2 parents dafb4ca + a5decbc commit 9ec4151
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ var AngularFullstackGenerator = yeoman.generators.Base.extend({
this.filters[answers.markup] = true;
this.filters[answers.stylesheet] = true;
this.filters[answers.router] = true;
this.filters.bootstrap = answers.bootstrap;
this.filters.uibootstrap = answers.uibootstrap;
this.filters.bootstrap = !!answers.bootstrap;
this.filters.uibootstrap = !!answers.uibootstrap;
cb();
}.bind(this));
},
Expand Down

0 comments on commit 9ec4151

Please sign in to comment.