Fail build script if hugo fails
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Marsh 2021-01-04 11:46:14 +00:00
parent 556c837aa9
commit 5e7ad8fbfc
Signed by: burble
GPG Key ID: 0FCCD13AE1CF7ED8

11
push.sh
View File

@ -54,11 +54,16 @@ chmod 0600 .tmp/*
########################################################################
# generate the site
pushd site
hugo
popd
hugo
if [ $? ne 0 ]
then
echo "Hugo build failed"
exit 1
fi
popd
########################################################################
# and push to hosts