Browse code

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

Christian Berendt authored on 2015/10/08 01:11:46
Showing 1 changed files
... ...
@@ -81,7 +81,7 @@ for f in $(find . \( -name .git -o -name .tox \) -prune -o \( -type f -name \*.s
81 81
     mkdir -p $FQ_HTML_BUILD/`dirname $f`;
82 82
     $SHOCCO $f > $FQ_HTML_BUILD/$f.html
83 83
 done
84
-for f in $(find functions functions-common inc lib pkg samples -type f -name \*); do
84
+for f in $(find functions functions-common inc lib pkg samples -type f -name \* ! -name *.md ! -name *.conf); do
85 85
     echo $f
86 86
     FILES+="$f "
87 87
     mkdir -p $FQ_HTML_BUILD/`dirname $f`;