diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-11-23 21:44:30 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-11-23 21:44:30 +0530 |
commit | 3e8089ec3c6d887a36d6605e534324f492d8815b (patch) | |
tree | d68ce7dec29197ab2a1534b863a9319083de342e | |
parent | c165b8dc7607cfa3ca0fda0c8b4f172bb5898adf (diff) |
added hugo-upload script
-rwxr-xr-x | .scripts/hugo-upload | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.scripts/hugo-upload b/.scripts/hugo-upload new file mode 100755 index 0000000..3c45a0f --- /dev/null +++ b/.scripts/hugo-upload @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +if [ -f .hugo_upload ]; then + source .hugo_upload + + rm -r public/ + hugo --quiet + + rsync -rtvzP public/ "$user@$host:$target_dir" +else + echo ".hugo_upload file not found in $(pwd)" +fi |