6 lines
148 B
Makefile
6 lines
148 B
Makefile
|
.PHONY: upload
|
||
|
|
||
|
upload:
|
||
|
rsync -r --exclude .git/ . doktorkraus.de:bovender
|
||
|
ssh -t doktorkraus.de "sudo cp -r bovender /var/www/; rm -rf bovender"
|