1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

cross-spawn #705

This commit is contained in:
codecalm
2020-11-08 13:32:09 +01:00
parent 8be915e1e9
commit 6c5b3bd36f

View File

@@ -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);
});