2024-08-26 18:10:27 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
cd "${script_dir}"
|
|
|
|
|
|
|
|
echo "Docs directory: $script_dir"
|
|
|
|
cd docs_website
|
|
|
|
yarn build
|
|
|
|
cd ..
|
|
|
|
|
2024-09-19 02:11:28 +00:00
|
|
|
rsync -rv --delete ${script_dir}/docs_website/build/ root@info.ourworld.tf:/root/hero/www/info/docs/
|
2024-08-26 18:10:27 +00:00
|
|
|
|