small_server_thingies/nginx/copy_public_jekyll_to_nginx.sh

11 lines
257 B
Bash

#!/bin/bash
JEKYLL_SITE_LOCATION=/home/pablo/counterweight/_site
NGINX_SITE_LOCATION=/home/pablo/counterweight_nginx/site
echo "Copying from $JEKYLL_SITE_LOCATION to $NGINX_SITE_LOCATION"
cp -a $JEKYLL_SITE_LOCATION/. $NGINX_SITE_LOCATION
echo "Done!"