12 lines
158 B
Bash
Executable File
12 lines
158 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
cd "${script_dir}"
|
|
|
|
echo "Docs directory: $script_dir"
|
|
cd docs_website
|
|
yarn
|
|
|