small_server_thingies/nginx/copy_public_jekyll_to_nginx.sh

12 lines
255 B
Bash
Raw Normal View History

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