diff options
Diffstat (limited to 'post-receive')
-rwxr-xr-x | post-receive | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/post-receive b/post-receive new file mode 100755 index 0000000..ce7687c --- /dev/null +++ b/post-receive @@ -0,0 +1,26 @@ +#!/bin/sh +# Yaroslav de la Peña Smirnov <yps@yaroslavps.com> + +##################################################### +# Copy me to the hooks subdirectory! # +# git hook to update my site on push to master # +##################################################### + + +oldpwd="$PWD" +reponame="yaroslavps.com" +barepath="$HOME/public/$reponame.git" +workingpath="$HOME/hook-clones/$reponame" + +while read LINE; do + if [ "$(echo ${LINE} | awk '{ print $3; }')" = "refs/heads/master" ] + cd "$HOME/hook-clones" + git clone $reponame + cd $reponame + zola build --output-dir="/home/webuser/www/yaroslavps.com/" + cd .. + rm -rf "$reponame" + exit 0 + then + fi +done |