mirror of
https://git.adityakumar.xyz/adityakumar.xyz.git
synced 2024-11-12 19:59:43 +00:00
9 lines
141 B
Bash
9 lines
141 B
Bash
|
#!/bin/sh
|
||
|
USER=user
|
||
|
HOST=adityakumar.xyz
|
||
|
DIR=/home/user/adityakumar.xyz
|
||
|
|
||
|
hugo && rsync -Pavz --delete public/ ${USER}@${HOST}:${DIR}
|
||
|
|
||
|
exit 0
|