mirror of
https://github.com/corda/corda.git
synced 2025-03-16 17:15:19 +00:00
18 lines
395 B
Bash
Executable File
18 lines
395 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# The purpose of this file is to make the docsite in a python virtualenv
|
|
# You can call it manually if running make manually, otherwise gradle will run it for you
|
|
|
|
# Activate the virtualenv
|
|
if [ -d "virtualenv/bin" ]
|
|
then
|
|
# it's a Unix system
|
|
source virtualenv/bin/activate
|
|
else
|
|
source virtualenv/Scripts/activate
|
|
fi
|
|
|
|
|
|
echo "Generating HTML pages ..."
|
|
make html
|
|
|