static-pages/sync.sh
Naomi Carrigan 90d05bfe72
Some checks failed
Code Analysis / SonarQube (push) Failing after 42s
feat: set up sitemap
2025-02-26 15:49:06 -08:00

10 lines
314 B
Bash
Executable File

#! /usr/bin/bash
dirs=("bsky" "chat" "games" "link-redirector" "resume" "testimonials" "manual" "sitemap");
for dir in "${dirs[@]}"; do
rsync -av $dir prod:/home/nhcarrigan
echo "Synced $dir"
done
echo "mail/index.html must be manually synced to mail:/home/user-data/www/default by a user with sudo access."