Skip to content

Commit 9ec4151

Browse files
committed
Merge pull request #497 from kingcody/fix/bootstrap-prompts
fix(gen): use bool for bootstrap filters
2 parents dafb4ca + a5decbc commit 9ec4151

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: app/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ var AngularFullstackGenerator = yeoman.generators.Base.extend({
114114
this.filters[answers.markup] = true;
115115
this.filters[answers.stylesheet] = true;
116116
this.filters[answers.router] = true;
117-
this.filters.bootstrap = answers.bootstrap;
118-
this.filters.uibootstrap = answers.uibootstrap;
117+
this.filters.bootstrap = !!answers.bootstrap;
118+
this.filters.uibootstrap = !!answers.uibootstrap;
119119
cb();
120120
}.bind(this));
121121
},

0 commit comments

Comments
 (0)