diff --git a/gulpfile.js b/gulpfile.js index 3d928f570..e7a85ecad 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -133,7 +133,7 @@ gulp.task('clean-dirs', () => { }); gulp.task('clean-jekyll', (cb) => { - return cp.spawn('bundle', ['exec', 'jekyll', 'clean'], { stdio: 'inherit' }) + return spawn('bundle', ['exec', 'jekyll', 'clean'], { stdio: 'inherit' }) .on('close', cb); });