mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
18 lines
273 B
Bash
18 lines
273 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -xeo pipefail
|
||
|
|
||
|
if [ ! -d "virtualenv" ]
|
||
|
then
|
||
|
virtualenv -p python2.7 virtualenv
|
||
|
fi
|
||
|
|
||
|
(
|
||
|
. virtualenv/bin/activate
|
||
|
if [ ! -d "virtualenv/lib/python2.7/site-packages/sphinx" ]
|
||
|
then
|
||
|
pip install -r requirements.txt
|
||
|
fi
|
||
|
make html
|
||
|
)
|