update deploy.sh

This commit is contained in:
app-harry 2024-10-27 21:00:28 +08:00
parent 19caf1ac5b
commit 44d3849379

View File

@ -31,7 +31,7 @@ flush() {
for item in ./* .[^.]*; do
# skip ./_output and CNAME
if [[ "$item" != "./_output" && "$item" != "./CNAME" ]]; then
if [[ "$item" != "./_output" && "$item" != "./.git" && "$item" != "./.github" && "$item" != "./CNAME" ]]; then
rm -rf "$item"
fi
done