Merge pull request #6 from netlify/make-sure-to-exit-with-non-zero-exit-code-on-error

Make sure to exit with non-zero exit code on hugo error
This commit is contained in:
Mathias Biilmann 2016-10-18 22:41:46 -07:00 committed by GitHub
commit 5ae9e9496f
1 changed files with 8 additions and 3 deletions

View File

@ -53,8 +53,13 @@ gulp.task("server", ["hugo", "css", "js"], () => {
function buildSite(cb, options) {
const args = options ? defaultArgs.concat(options) : defaultArgs;
return cp.spawn(hugoBin, args, {stdio: "inherit"}).on("close", () => {
browserSync.reload();
cb();
return cp.spawn(hugoBin, args, {stdio: "inherit"}).on("close", (code) => {
if (code === 0) {
browserSync.reload();
cb();
} else {
browserSync.notify("Hugo build failed :(");
cb("Hugo build failed");
}
});
}