Skip the .tox dir when building docs
When running tools/build_docs.sh in a devstack dir that has also run tox build_docs needlessly runs shocco on the .tox files. Just skip them. Change-Id: Ia561e49ea2214ac75bd55964f1b86872118b2031
This commit is contained in:
parent
31127a2a74
commit
6d50d95cae
@ -75,7 +75,7 @@ rm -f $GLOG
|
||||
|
||||
# Build list of scripts to process
|
||||
FILES=""
|
||||
for f in $(find . -name .git -prune -o \( -type f -name \*.sh -not -path \*shocco/\* -print \)); do
|
||||
for f in $(find . \( -name .git -o -name .tox \) -prune -o \( -type f -name \*.sh -not -path \*shocco/\* -print \)); do
|
||||
echo $f
|
||||
FILES+="$f "
|
||||
mkdir -p $FQ_HTML_BUILD/`dirname $f`;
|
||||
|
Loading…
Reference in New Issue
Block a user