mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-05-02 03:01:08 -04:00
18 lines
327 B
Bash
Executable File
18 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DOCS_DIR=docs
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
# Move autogenerated reference
|
|
mkdir -p $DOCS_DIR/reference
|
|
mv packages/cli/docs/cli.md $DOCS_DIR/reference/cli.md
|
|
|
|
# Copy contributing doc
|
|
cp CONTRIBUTING.md $DOCS_DIR/contributing.md
|
|
|
|
# Copy visual assets
|
|
rm -rf $DOCS_DIR/assets
|
|
cp -r assets $DOCS_DIR/assets
|