diff options
author | Ryota MIBU <r-mibu@cq.jp.nec.com> | 2016-01-13 15:09:12 +0900 |
---|---|---|
committer | Ryota MIBU <r-mibu@cq.jp.nec.com> | 2016-01-13 15:11:34 +0900 |
commit | 44be7a3a4e4c747d47aa7a434930d15924435b6e (patch) | |
tree | 6736224df27a4196a6c44077d711bc467c9117ba | |
parent | d083608a5ed97fd7b932d66bbd8bdee875a4e6b1 (diff) |
composite docs: remove creation of other projects docs
Change-Id: I73fa92f3fd782920486e364818b69e12974f4292
Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
-rwxr-xr-x | build-composite.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build-composite.sh b/build-composite.sh index 2175f5ca7..bfe33fa6b 100755 --- a/build-composite.sh +++ b/build-composite.sh @@ -9,7 +9,7 @@ GIT_CLONE_BASE=${GIT_CLONE_BASE:-ssh://gerrit.opnfv.org:29418} GERRIT_BRANCH=${GERRIT_BRANCH:-master} get_repo_names() { - # Note: Not all repositories are ready for the composite docs, + # NOTE: Not all repositories are ready for the composite docs, # so we have the repo name list here to add project docs # one by one. This will be replaced by the list in project.cfg . # grep -v '^#' releng/jjb/opnfvdocs/project.cfg | sort @@ -43,6 +43,9 @@ for repo in $repos; do done popd +# NOTE: Removing index.rst in project repos to reduce number of docs. +find docs_build/projects -type f -name 'index.rst' -print | xargs -I i rm -f i + # NOTE: automated link generation is not ready... #echo #echo "Creating document links" |