alias p := push
alias l := pull

remote_repo := "tuxcord.net:/var/www/pacman.tuxcord.net/repo/"

push:
    rsync -rltDP repo/ {{ remote_repo }}

pull:
    mkdir repo
    rsync -rltDP {{ remote_repo }} repo/
