15 lines
263 B
Bash
15 lines
263 B
Bash
|
#!/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 ..
|
||
|
|
||
|
rsync -rv ${script_dir}/docs_website/build/ root@info.ourworld.tf:/root/hero/www/info/docs/
|
||
|
|