From 056a0c6bbc277937ee79361f901e4f6bd5513eec Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Wed, 7 Oct 2015 18:11:46 +0200 Subject: [PATCH] build_docs: do not handle md and conf files with shocco At the moment the following md and conf files are handled with shocco. This should not be the case. * samples/local.conf * lib/neutron_thirdparty/README.md * lib/neutron_plugins/README.md Change-Id: I11ea5ebda111e6cdab71d3cffaeb4f16443bfd3c --- tools/build_docs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build_docs.sh b/tools/build_docs.sh index fa843432b5..7dc492e2a4 100755 --- a/tools/build_docs.sh +++ b/tools/build_docs.sh @@ -81,7 +81,7 @@ for f in $(find . \( -name .git -o -name .tox \) -prune -o \( -type f -name \*.s mkdir -p $FQ_HTML_BUILD/`dirname $f`; $SHOCCO $f > $FQ_HTML_BUILD/$f.html done -for f in $(find functions functions-common inc lib pkg samples -type f -name \*); do +for f in $(find functions functions-common inc lib pkg samples -type f -name \* ! -name *.md ! -name *.conf); do echo $f FILES+="$f " mkdir -p $FQ_HTML_BUILD/`dirname $f`;