8 lines
180 B
Bash
Executable file
8 lines
180 B
Bash
Executable file
#!/bin/bash
|
|
USER=adolflow
|
|
HOST=butarque.egelesta.net
|
|
DIR=/var/www/masterperiodismodatos.com/
|
|
|
|
hugo && rsync -e 'ssh -p 22021' -avzO --delete public/ ${USER}@${HOST}:${DIR}
|
|
|
|
exit 0
|