Skip to content

Commit a938b74

Browse files
committed
Create docs dir if not existent
1 parent f696583 commit a938b74

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/build.sh

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ cd "$(dirname "$(dirname "${BASH_SOURCE[0]}")")"
1212
# Install requirements
1313
pip install -r requirements.txt
1414

15+
if [ ! -d docs ]; then
16+
mkdir docs
17+
fi
18+
1519
# Get the pages into the docs folder
1620
ln -sf ../README.md docs/index.md
1721
ln -sf ../LICENSE.md docs/license.md

0 commit comments

Comments
 (0)