Modify gulpfile to work on Linux

This commit is contained in:
Jesper Hess 2016-12-30 10:56:36 +01:00
parent b2023a997c
commit 19099765cd
Signed by: graffen
GPG key ID: 351A89E40D763F0F

View file

@ -11,7 +11,7 @@ var messages = {
*/ */
gulp.task('jekyll-build', function (done) { gulp.task('jekyll-build', function (done) {
browserSync.notify(messages.jekyllBuild); browserSync.notify(messages.jekyllBuild);
return cp.spawn('bundle.bat', ['exec','jekyll','build'], {stdio: 'inherit'}) return cp.spawn('bundle', ['exec','jekyll','build'], {stdio: 'inherit'})
.on('close', done); .on('close', done);
}); });