mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-22 07:20:05 +00:00
blog: updateBlog now checks for changes before building
This commit is contained in:
parent
ca6fdaeff3
commit
4359544b6a
@ -1,8 +1,30 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
cd /var/www/{{ domain }}
|
cd /var/www/{{ domain }}
|
||||||
/usr/bin/git fetch origin
|
|
||||||
/usr/bin/git reset --hard origin/main
|
|
||||||
|
|
||||||
# build sites
|
PUBLIC_DIR=public
|
||||||
/usr/bin/hugo --cleanDestinationDir --minify -d public -b https://{{ domain }}
|
TOR_DIR=tor
|
||||||
/usr/bin/hugo --cleanDestinationDir --minify -d tor -b {{ onionDomain }}
|
|
||||||
|
buildBlog () {
|
||||||
|
hugo --cleanDestinationDir --minify -d $PUBLIC_DIR -b https://{{ domain }}
|
||||||
|
hugo --cleanDestinationDir --minify -d $TOR_DIR -b {{ onionDomain }}
|
||||||
|
}
|
||||||
|
|
||||||
|
git fetch origin
|
||||||
|
UPSTREAM=${1:-'@{u}'}
|
||||||
|
LOCAL=$(git rev-parse @)
|
||||||
|
REMOTE=$(git rev-parse "$UPSTREAM")
|
||||||
|
BASE=$(git merge-base @ "$UPSTREAM")
|
||||||
|
if [ $LOCAL = $REMOTE ]; then
|
||||||
|
echo "blog is up to date!"
|
||||||
|
elif [ $LOCAL = $BASE ]; then
|
||||||
|
# there are changes to reset too
|
||||||
|
# && we need to update our blog
|
||||||
|
echo "missing changes!!"
|
||||||
|
git reset --hard origin/main
|
||||||
|
buildBlog
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d "$PUBLIC_DIR" ] || [ ! -d "$TOR_DIR" ]; then
|
||||||
|
echo "missing directories..."
|
||||||
|
buildBlog
|
||||||
|
fi
|
Loading…
Reference in New Issue
Block a user