12 lines
207 B
Makefile
12 lines
207 B
Makefile
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/
|