Add a force variable to Hugo cronjob.
This commit is contained in:
@@ -2,13 +2,15 @@
|
|||||||
|
|
||||||
cd /var/www/hugo/site
|
cd /var/www/hugo/site
|
||||||
|
|
||||||
|
FORCE="$1"
|
||||||
|
|
||||||
echo "*** Running cronjob @ `date` ***"
|
echo "*** Running cronjob @ `date` ***"
|
||||||
|
|
||||||
# Pull any updates, and if the project is already up to date, exit successfully.
|
# Pull any updates, and if the project is already up to date, exit successfully.
|
||||||
git pull | grep -v "up to date"
|
git pull | grep -v "up to date"
|
||||||
status="$?"
|
status="$?"
|
||||||
echo "* Pull status is '$status'."
|
echo "* Pull status is '$status'."
|
||||||
if [[ $status != 0 && -e /var/www/html/index.html ]]; then
|
if [[ $status != 0 && -e /var/www/html/index.html && -z $FORCE ]]; then
|
||||||
echo "* Site is already up to date and copied, exiting."
|
echo "* Site is already up to date and copied, exiting."
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
@@ -16,7 +18,7 @@ fi
|
|||||||
# If the project was not already up to date, build the new files for NGINX.
|
# If the project was not already up to date, build the new files for NGINX.
|
||||||
hugo --gc --minify
|
hugo --gc --minify
|
||||||
status="$?"
|
status="$?"
|
||||||
echo "* Hugo status is '$status'."
|
echo "* Hugo status is '$status', FORCE is '$FORCE'."
|
||||||
if [[ $status == 0 && -e public/index.html ]]; then
|
if [[ $status == 0 && -e public/index.html ]]; then
|
||||||
echo "* Copying files..."
|
echo "* Copying files..."
|
||||||
rm -rfv /var/www/html/*
|
rm -rfv /var/www/html/*
|
||||||
@@ -24,3 +26,7 @@ if [[ $status == 0 && -e public/index.html ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
ww/html/
|
||||||
|
fi
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|||||||
Reference in New Issue
Block a user