eureka/deploy.sh

10 lines
181 B
Bash
Raw Permalink Normal View History

#!/bin/sh
2021-10-26 20:57:55 +00:00
DEST="nilix@lynx.uberspace.de:~/lib/nilfm/"
if [ -z "$1" ]; then
rsync -avK --delete ../ ${DEST}
elif [ "$1" = "--resync" ]; then
rsync -avk --delete ${DEST} ../
fi