Code

Added file-existance test.
authorjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 19 Jul 2005 12:02:46 +0000 (12:02 +0000)
committerjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 19 Jul 2005 12:02:46 +0000 (12:02 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@970 594d385d-05f5-0310-b6e9-bd551577e9d8

gen_locale.sh

index 77c733109748595704caa2006970dfc708065fdf..e134e202133824fa90c00b77087daa3cfa74e302 100755 (executable)
@@ -40,8 +40,7 @@ echo "Merging po files with existing ones:"
 error=0
 for f in locale/??/LC_MESSAGES; do
   echo -n "* merging $f/messages.po: "
-  msgmerge $f/messages.po locale/messages.po --output-file=$f/messages.po.new &> /dev/null
-  
+  [ -f $f/messages.po ] && msgmerge $f/messages.po locale/messages.po --output-file=$f/messages.po.new &> /dev/null || /bin/true
   if [ $? -eq 0 ]; then
     echo "done";
   else