diff --git a/nginx/copy_public_jekyll_to_nginx.sh b/nginx/copy_public_jekyll_to_nginx.sh index aae28df..d8fcbce 100644 --- a/nginx/copy_public_jekyll_to_nginx.sh +++ b/nginx/copy_public_jekyll_to_nginx.sh @@ -1,11 +1,11 @@ #!/bin/bash -JEKYLL_SITE_LOCATION=/home/pablo/counterweight/_site +SITE_BUILD_LOCATION=/home/pablo/counterweight/output NGINX_SITE_LOCATION=/home/pablo/counterweight_nginx/site -echo "Copying from $JEKYLL_SITE_LOCATION to $NGINX_SITE_LOCATION" +echo "Copying from $SITE_BUILD_LOCATION to $NGINX_SITE_LOCATION" -cp -a $JEKYLL_SITE_LOCATION/. $NGINX_SITE_LOCATION +cp -a $SITE_BUILD_LOCATION/. $NGINX_SITE_LOCATION echo "Done!"