10 lines
126 B
Bash
Executable File
10 lines
126 B
Bash
Executable File
#!/bin/sh
|
|
|
|
USER=dotyaoverlord
|
|
HOST=dotya.ml
|
|
DIR=public/
|
|
|
|
hugo && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR}
|
|
|
|
exit 0
|