Skip to content

Commit cfc3eb1

Browse files
committed
Make it properly skip install when testing
1 parent 3a2cc26 commit cfc3eb1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

generators/app/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,10 @@ module.exports = generators.Base.extend({
158158
},
159159

160160
installing: function () {
161-
this.installDependencies({bower: false});
161+
this.installDependencies({
162+
bower: false,
163+
skipInstall: this.options['skip-install']
164+
});
162165
this.spawnCommand('bundle', ['install', '--quiet']);
163166
}
164167
});

0 commit comments

Comments
 (0)