diff options
author | codecalm <codecalm@gmail.com> | 2022-08-17 14:32:40 +0200 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2022-08-17 14:32:40 +0200 |
commit | 6bca6c70cd9f8027ba3ca24c00d1b55ff842862c (patch) | |
tree | cb788552e251b31ffa210e5c301d836a38b960f9 | |
parent | eleventy test (diff) | |
download | tabler-icons-6bca6c70cd9f8027ba3ca24c00d1b55ff842862c.tar.xz |
build fix
-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) { |