11 lines
255 B
Bash
11 lines
255 B
Bash
#!/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!"
|