tools.e-durable.ch/deploy.sh

10 lines
196 B
Bash
Executable File

#!/bin/sh
DESTINATION=root@static.recycled.cloud:/var/www/
WEBSITE=tools.e-durable.ch
sftp -b - "$DESTINATION" <<- EOF
-rm $WEBSITE/*
$(for f in "$@"; do echo "put -R $f $WEBSITE/"; done)
EOF