aboutsummaryrefslogtreecommitdiff
path: root/post-receive
blob: 0da0bf76af6d902617d6d308e7b82e5b4ca08066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Skip build if using git push with -o or --push-option
if [[ -v GIT_PUSH_OPTION_0 ]]; then
    exit
fi

# Update worktree
cd ~/Code/website
git submodule update

# Manually copy static since btrfs COW is super fast
rm -r /srv/http/www
cp -r static /srv/http/www
hugo --destination /srv/http/www