Fix htmlproofer call while also getting output
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
910704ed2f
commit
698ca41d6e
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue