Fix shellcheck SC2230 > which is non-standard. Use builtin 'command -v' instead. Once applied to everything concerning OpenWrt we can disable the busybox feature `which` and save 3.8kB. Signed-off-by: Paul Spooren <mail@aparcar.org>
24 lines
553 B
Bash
Executable file
24 lines
553 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PATTERN=$1
|
|
SCM=
|
|
|
|
[ -d .svn ] && SCM="svn"
|
|
git=$( command -v git 2>/dev/null )
|
|
[ "$git" ] && "$git" status >/dev/null && SCM="git"
|
|
|
|
[ -z "$SCM" ] && {
|
|
echo "Unsupported SCM tool" >&2
|
|
exit 1
|
|
}
|
|
|
|
[ -z "$PATTERN" ] && PATTERN="*.pot"
|
|
|
|
for lang in $(cd po; echo ?? ??_??); do
|
|
for file in $(cd po/templates; echo $PATTERN); do
|
|
if [ -f po/templates/$file -a ! -f "po/$lang/${file%.pot}.po" ]; then
|
|
msginit --no-translator -l "$lang" -i "po/templates/$file" -o "po/$lang/${file%.pot}.po"
|
|
$SCM add "po/$lang/${file%.pot}.po"
|
|
fi
|
|
done
|
|
done
|