#!/bin/sh

# 构建网站
hugo --minify

# 同步到 Nginx 目录
sudo rsync -avz --delete public/ /var/www/my-blog/

exit 0
