#!/bin/sh
USER=y192235
HOST=mrkev.fme.vutbr.cz
DIR=public_html/
git submodule init
git submodule update
hugo --gc=true && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR}
exit 0