diff --git a/gulpfile.js b/gulpfile.js index 8debc17..0f406d5 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -11,7 +11,7 @@ var messages = { */ gulp.task('jekyll-build', function (done) { 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); }); @@ -43,4 +43,4 @@ gulp.task('watch', function () { * Default task, running just `gulp` will compile the sass, * compile the jekyll site, launch BrowserSync & watch files. */ -gulp.task('default', ['browser-sync', 'watch']); \ No newline at end of file +gulp.task('default', ['browser-sync', 'watch']);