You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
248 B
16 lines
248 B
#! /bin/sh
|
|
set -xe
|
|
|
|
SCRIPT_PATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
|
cd "${SCRIPT_PATH}/.."
|
|
|
|
grep -v '^#' po/POTFILES.in | \
|
|
while read f
|
|
do
|
|
test -n "$f" || continue
|
|
if test ! -f "$f"
|
|
then
|
|
echo "$f: source file missing!" >&2
|
|
exit 1
|
|
fi
|
|
done
|
|
|