Files
static-pages/sync.sh
T
naomi 43a021d802
Code Analysis / SonarQube (push) Failing after 15s
fix: couple of bugs
2025-09-23 13:21:27 -07:00

10 lines
341 B
Bash
Executable File

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