blob: dd913d473ae5489528674a76cc94df283887332d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
JEKYLL_DIR="/_site"
DEPLOY_HOST="workprod02"
DEPLOY_PATH="/home/sanderstggrp/web/sanderstechnologygroup.com/public_html"
# cd "$JEKYLL_DIR"
# bundle exec jekyll build
rsync -avz --delete -e "ssh -p $DEPLOY_PORT" \
_site/ \
$DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH
echo "Deployment complete."
|