static-pages/sync.sh
Naomi Carrigan 00dc40ba47
Some checks failed
Code Analysis / SonarQube (push) Failing after 50s
feat: add books too
2025-03-24 20:07:24 -07:00

10 lines
330 B
Bash
Executable File

#! /usr/bin/bash
dirs=("bsky" "chat" "games" "link-redirector" "resume" "testimonials" "manual" "sitemap" "music" "books");
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."