aboutsummaryrefslogtreecommitdiff
path: root/post-receive
blob: ce7687c7a99b84e0f7a47e541e30b05b1691a663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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