mirror of
https://git.adityakumar.xyz/adityakumar.xyz.git
synced 2024-11-09 18:49:45 +00:00
8 lines
141 B
Bash
8 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
|