Make sure to exit with non-zero exit code on hugo error
If hugo fails to build the site, we want to make sure gulp exits with an appropriate error code so a netlify deploy fails
This commit is contained in:
parent
742a26610c
commit
473345578f
|
@ -53,8 +53,13 @@ gulp.task("server", ["hugo", "css", "js"], () => {
|
||||||
function buildSite(cb, options) {
|
function buildSite(cb, options) {
|
||||||
const args = options ? defaultArgs.concat(options) : defaultArgs;
|
const args = options ? defaultArgs.concat(options) : defaultArgs;
|
||||||
|
|
||||||
return cp.spawn(hugoBin, args, {stdio: "inherit"}).on("close", () => {
|
return cp.spawn(hugoBin, args, {stdio: "inherit"}).on("close", (code) => {
|
||||||
browserSync.reload();
|
if (code === 0) {
|
||||||
cb();
|
browserSync.reload();
|
||||||
|
cb();
|
||||||
|
} else {
|
||||||
|
browserSync.notify("Hugo build failed :(");
|
||||||
|
cb("Hugo build failed");
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue