Fix htmlproofer call while also getting output
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-07-21 23:40:25 +02:00
parent 910704ed2f
commit 698ca41d6e

View File

@ -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.