diff options
-rw-r--r-- | gulpfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js index ff868a67..a560d986 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -388,7 +388,7 @@ gulp.task('build-zip', function() { }) gulp.task('build-jekyll', function(cb) { - const jekyll = cp.spawn('bundle', ['exec', 'jekyll', 'build'], { stdio: 'inherit' }) + const jekyll = cp.spawn('eleventy', [ ], { stdio: 'inherit' }) jekyll.on('close', function(code) { console.log(`Jekyll build exited with code ${code}`) if (!code) { |