Refactor the packaging so that subcommands can depend on the common functionality without getting the executable artifacts.
10 lines
159 B
Bash
Executable File
10 lines
159 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
BASEDIR=`dirname $0`/..
|
|
|
|
cd $BASEDIR
|
|
source $BASEDIR/env/bin/activate
|
|
echo "Virtualenv activated."
|
|
|
|
sphinx-build -W -b html pydoc pydoc/_build
|