2021-11-14 17:53:34 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
|
2021-11-15 22:52:57 +01:00
|
|
|
SITE_BUILD_LOCATION=/home/pablo/counterweight/output
|
2021-11-14 17:53:34 +01:00
|
|
|
NGINX_SITE_LOCATION=/home/pablo/counterweight_nginx/site
|
|
|
|
|
|
2021-11-15 22:52:57 +01:00
|
|
|
echo "Copying from $SITE_BUILD_LOCATION to $NGINX_SITE_LOCATION"
|
2021-11-14 17:53:34 +01:00
|
|
|
|
2021-11-15 22:52:57 +01:00
|
|
|
cp -a $SITE_BUILD_LOCATION/. $NGINX_SITE_LOCATION
|
2021-11-14 17:53:34 +01:00
|
|
|
|
|
|
|
|
echo "Done!"
|