Some tiny fixes for this script

2.20
franck 2021-10-24 12:52:45 +02:00
parent 0d7f9e1f87
commit bfa785a0ae
Signed by: franck-paul
GPG Key ID: BC0939B7E6CF71E7
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ if [ ! -d ./inc/core ]; then
exit 1
fi
LANGS=$(cd locales && ls -d */ | sed -e "s/\///g" | grep -v "_pot")
LANGS=$(cd locales && ls -d -- */ | sed -e "s/\///g" | grep -v "_pot")
for l in $LANGS; do
./build-tools/po_update.sh $l
./build-tools/po_update.sh "$l"
done