Fix htmlproofer call while also getting output
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -144,9 +144,10 @@ gulp.task("build:jekyll:local", function () {
|
|||||||
return exec(shellCommand);
|
return exec(shellCommand);
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task("htmlproofer", function () {
|
gulp.task("htmlproofer", function(done) {
|
||||||
const shellCommand = "bundle exec htmlproofer _site/ --disable-external";
|
const shellCommand = "bundle exec htmlproofer _site/ --disable-external";
|
||||||
return exec(shellCommand);
|
execSync(shellCommand);
|
||||||
|
done();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Deletes the entire _site directory.
|
// Deletes the entire _site directory.
|
||||||
|
|||||||
Reference in New Issue
Block a user