From 19099765cd6665c323e9416d3a60b1c5be0e2a34 Mon Sep 17 00:00:00 2001 From: Jesper Hess Nielsen Date: Fri, 30 Dec 2016 10:56:36 +0100 Subject: [PATCH] Modify gulpfile to work on Linux --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 0f424ab..f32a5c5 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); });