static-pages/sync.sh
Naomi Carrigan 4f82486799
Some checks failed
Code Analysis / SonarQube (push) Failing after 48s
feat: remove resume
We're moving it to its own repo.
2025-04-08 13:40:00 -07:00

10 lines
321 B
Bash
Executable File

#! /usr/bin/bash
dirs=("bsky" "chat" "games" "link-redirector" "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."