From eef8957e77217feda91ccac3d9a16ae766023387 Mon Sep 17 00:00:00 2001 From: pablo Date: Mon, 15 Nov 2021 22:52:57 +0100 Subject: [PATCH] Modified this script a bit since I switched from Jekyll to Pelican --- nginx/copy_public_jekyll_to_nginx.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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!"