Fix htmlproofer call while also getting output
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jim Martens 2023-07-21 23:40:25 +02:00
parent 910704ed2f
commit 698ca41d6e
1 changed files with 3 additions and 2 deletions

View File

@ -144,9 +144,10 @@ gulp.task("build:jekyll:local", function () {
return exec(shellCommand);
});
gulp.task("htmlproofer", function () {
gulp.task("htmlproofer", function(done) {
const shellCommand = "bundle exec htmlproofer _site/ --disable-external";
return exec(shellCommand);
execSync(shellCommand);
done();
});
// Deletes the entire _site directory.