summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRyota MIBU <r-mibu@cq.jp.nec.com>2016-07-25 10:59:18 +0900
committerRyota MIBU <r-mibu@cq.jp.nec.com>2016-07-25 11:22:01 +0900
commit7d6d582ffc69597ef82e7eed7c34e27f71b4889e (patch)
treed13adef8ad2670456781e4fabe964b05a551e34c /scripts
parentf59a2d4f1c5655e5ec4f3ab5fe70932ac2fa94f0 (diff)
fix pre-hook
- execute pre-hook after required python package installed - remove execution flag of docs/pre-hook.sh as it's unnecessary - add howto document regarding 'Hooks' Change-Id: Ib94888b018347ce8660d53db93dba3586c098948 Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/docs-build.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/docs-build.sh b/scripts/docs-build.sh
index afa68ec65..043fd1b94 100755
--- a/scripts/docs-build.sh
+++ b/scripts/docs-build.sh
@@ -190,13 +190,12 @@ fi
virtualenv "$VENV_DIR"
source "$VENV_DIR/bin/activate"
+pip install -r "$OPNFVDOCS_DIR/etc/requirements.txt"
if [ -e "$DOCS_DIR/pre-hook.sh" ]; then
source "$DOCS_DIR/pre-hook.sh"
fi
-pip install -r "$OPNFVDOCS_DIR/etc/requirements.txt"
-
find $DOCS_DIR -name $INDEX_RST -printf '%h\n' | while read dir
do
name=$(generate_name $dir)