summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sanders <ben@sanders.life>2025-11-11 08:59:29 -0500
committerBen Sanders <ben@sanders.life>2025-11-11 08:59:29 -0500
commit1fb6457f6245ec5af91d3c16ce5c01ec0c80ab80 (patch)
tree51cdae7107a5b060048e6ea82df193dece424045
parentce91c2ffeafacd770958d6041779d1aca8c05091 (diff)
removed subtitle for now
-rw-r--r--_posts/2025-11-11-thoughts-on-georgia-psc.md2
-rw-r--r--deploy-site.sh10
2 files changed, 4 insertions, 8 deletions
diff --git a/_posts/2025-11-11-thoughts-on-georgia-psc.md b/_posts/2025-11-11-thoughts-on-georgia-psc.md
index aba2ff4..1b6648f 100644
--- a/_posts/2025-11-11-thoughts-on-georgia-psc.md
+++ b/_posts/2025-11-11-thoughts-on-georgia-psc.md
@@ -5,7 +5,7 @@ date: 2025-11-11
permalink: "/blog/thoughts-on-georgia-psc"
author: Benjamin Sanders
catagories: politics,georgia,psc,peter hubbard,alicia johnson
-subtitle: "Blueorgia is real, y'all!"
+#subtitle: "Blueorgia is real, y'all!"
---
As I sit here listening to Phillip Defranco and Alex Pearlman's podcast, which I just discovered, they're talking about the recent
elections we had I've got a few thoughts on it, and it got me thinking.
diff --git a/deploy-site.sh b/deploy-site.sh
index 19008a1..feadc59 100644
--- a/deploy-site.sh
+++ b/deploy-site.sh
@@ -1,16 +1,12 @@
#!/bin/bash
-JEKYLL_DIR="/_site"
-DEPLOY_USER="ben"
-DEPLOY_HOST="64.42.180.156"
-DEPLOY_PORT="522"
+JEKYLL_DIR="_site"
+DEPLOY_HOST="personalprod"
DEPLOY_PATH="/data/sites/ben.sanders.life/html"
# cd "$JEKYLL_DIR"
# bundle exec jekyll build
-rsync -avz --delete -e "ssh -p $DEPLOY_PORT" \
- _site/ \
- $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH
+rsync -avz --delete "${JEKYLL_DIR}/" "$DEPLOY_HOST:$DEPLOY_PATH"
echo "Deployment complete." \ No newline at end of file