Ignore all dot-files for translation updates

We have moved from using tox to installing our own venv in ".venv",
which is now matching.  Modify the excludes to just ignore all
dot-files, as there will be nothing translatable in there.

Change-Id: I0c5f30dc3ea19ee8ee74e02e265f42ad2b54095c
This commit is contained in:
Ian Wienand 2017-11-20 10:40:37 +11:00
parent 94697373cf
commit f3cac1e4a0

View File

@ -137,7 +137,9 @@ function setup_project {
shift 2
# All argument(s) contain module names now.
local exclude='.tox/**'
# Exclude all dot-files, particuarly for things such such as .tox
# and .venv
local exclude='.*/**'
$VENV/bin/python $SCRIPTSDIR/create-zanata-xml.py \
-p $project -v $version --srcdir . --txdir . \