po/update-potfiles: fallback to `find` when git doesn't work

It allows to run po/update-potfiles not only in tarballs
and git repositories, but in git snapshots as well.
This commit is contained in:
Jan Chren (rindeal) 2019-10-04 16:40:49 +02:00
parent 7b41ae5b4e
commit a7f9588745
1 changed files with 3 additions and 1 deletions

View File

@ -15,11 +15,13 @@ fi
# find all git-tracked files
source_files=$(git ls-files . 2>/dev/null)
if [ $? -ne 0 ] || [ -z "$source_files" ]; then
echo "$0: warning: update-potfiles requires git" >&2
# we still go through the rest of this script to provide at least an empty
# list or remove non-existing (deleted) files
source_files=$(cat po/POTFILES.in 2>/dev/null)
fi
if [ $? -ne 0 ] || [ -z "$source_files" ]; then
source_files=$(find . -type f -printf "%P\\n" 2>/dev/null)
fi
# apply include/exclude patterns
source_files=$(