linuxkurs/deploy.sh

10 lines
191 B
Bash
Raw Normal View History

2019-02-13 11:40:14 +01:00
#!/bin/bash
deploy() {
git push && rsync -r --exclude-from=.deploy-ignore . pax2ero:/home/dany/www/schubertdaniel/linuxkurs
}
deploy && echo "Deployed" || echo "### some error #####"