Skip to content

Commit a6bffd3

Browse files
committed
Fix bundle installed starting before Gemfile exist
1 parent f73679c commit a6bffd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generators/app/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ on Github](https://github.com/sondr3/generator-jekyllized).
187187
if (!this.options['skip-install']) {
188188
this.log('\nCreating files and running ' + chalk.blue('npm install') +
189189
' and ' + chalk.blue('bundle install') + '.\n');
190-
this.spawnCommandSync('bundle', ['install']);
190+
this.spawnCommand('bundle', ['install']);
191191
}
192192
},
193193

0 commit comments

Comments
 (0)