13 lines
196 B
Bash
Executable File
13 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
script_dir=$(dirname "$0")
|
|
cd ${script_dir}
|
|
echo "Docs directory: $script_dir"
|
|
cd docs_website
|
|
yarn
|
|
yarn build
|
|
~/code/git.ourworld.tf/tfgrid/docs_tfgrid4/docs_website/build
|
|
|