#!/bin/bash JEKYLL_DIR="/_site" DEPLOY_USER="sanderstggrp" DEPLOY_HOST="64.42.181.202" DEPLOY_PORT="22" 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."