shakyShane/jekyll-gulp-sass-browser-sync

Jekyll not generating during 'gulp'

brttwrd opened this issue · 1 comments

When I run 'gulp', it completes but never shows the

Configuration file: C:/PATH/././_config.yml
            Source: C:/PATH/./###
       Destination: C:/PATH/././_site
      Generating...
                    done.

part. I can still get it to build by running 'jekyll build' but the gulp file doesn't seem to run it.

Running Windows 8.1

Edit: Also, I had to use the

return cp.exec('jekyll', ['build'], {stdio: 'inherit'}).on('close', done);

solution to get 'gulp' to run without error

Fixed by switching to

return cp.spawn('jekyll.bat', ['build'], {stdio: 'inherit'}).on('close', done);