oldcomputernerd.com/publish

27 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2025-01-15 21:47:32 +00:00
#!/usr/bin/env sh
# commit and push...
git add .;git commit -m"$@";git push -u origin master
2025-01-15 22:09:44 +00:00
echo "----------------------"
2025-01-15 22:06:31 +00:00
echo "Rsync static assets..."
2025-01-15 22:09:44 +00:00
echo "----------------------"
rsync --super -avhr -e ssh ./css/*.css gmgauthier@socrates:/var/www/oldcomputernerd.com/css/
rsync --super -avhr -e ssh ./font/* gmgauthier@socrates:/var/www/oldcomputernerd.com/font/
rsync --super -avhr -e ssh ./img/* gmgauthier@socrates:/var/www/oldcomputernerd.com/img/
2025-01-15 22:06:31 +00:00
2025-01-15 22:09:44 +00:00
echo "-------------------"
2025-01-15 22:06:31 +00:00
echo "Rsync content files"
2025-01-15 22:09:44 +00:00
echo "-------------------"
2025-01-20 11:20:30 +00:00
2025-01-20 11:36:14 +00:00
rsync --super -avhr -e ssh ./atari/* gmgauthier@socrates:/var/www/oldcomputernerd.com/atari/
rsync --super -avhr -e ssh ./mvs/* gmgauthier@socrates:/var/www/oldcomputernerd.com/mvs/
rsync --super -avhr -e ssh ./dos/* gmgauthier@socrates:/var/www/oldcomputernerd.com/dos/
rsync --super -avhr -e ssh ./linux/* gmgauthier@socrates:/var/www/oldcomputernerd.com/linux/
rsync --super -avhr -e ssh ./blog/* gmgauthier@socrates:/var/www/oldcomputernerd.com/blog/
2025-01-15 21:55:34 +00:00
2025-01-15 22:09:44 +00:00
echo "-------------------"
2025-01-15 22:06:31 +00:00
echo "Rsync root files"
2025-01-15 22:09:44 +00:00
echo "-------------------"
2025-01-15 21:47:32 +00:00
rsync --super -avh -e ssh ./*.html gmgauthier@socrates:/var/www/oldcomputernerd.com
rsync --super -avh -e ssh ./*.md gmgauthier@socrates:/var/www/oldcomputernerd.com