Fail build script if hugo fails
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
556c837aa9
commit
5e7ad8fbfc
11
push.sh
11
push.sh
@ -54,11 +54,16 @@ chmod 0600 .tmp/*
|
|||||||
|
|
||||||
########################################################################
|
########################################################################
|
||||||
# generate the site
|
# generate the site
|
||||||
|
|
||||||
pushd site
|
pushd site
|
||||||
hugo
|
|
||||||
popd
|
|
||||||
|
|
||||||
|
hugo
|
||||||
|
if [ $? ne 0 ]
|
||||||
|
then
|
||||||
|
echo "Hugo build failed"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
popd
|
||||||
########################################################################
|
########################################################################
|
||||||
# and push to hosts
|
# and push to hosts
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user