]> git.pld-linux.org Git - packages/dokuwiki-tpl-arctic.git/commitdiff
- do not use subshell, so the exit code could be propagated
authorElan Ruusamäe <glen@pld-linux.org>
Fri, 30 Jan 2009 14:23:55 +0000 (14:23 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    dokuwiki-find-lang.sh -> 1.5

dokuwiki-find-lang.sh

index 86f46faf6b4f08cf697d4570f632322a9c0411bb..d11bb963934152c17bfd12f3255694c0c7a78f08 100644 (file)
@@ -2,9 +2,13 @@
 PROG=${0##*/}
 dir=$RPM_BUILD_ROOT/usr/share/dokuwiki
 langfile=$1
+tmp=$(mktemp) || exit 1
+rc=0
+
+find $dir -type d -name lang > $tmp
 
 echo '%defattr(644,root,root,755)' > $langfile
-find $dir -type d -name lang | while read dir; do
+while read dir; do
        echo "%dir ${dir#$RPM_BUILD_ROOT}" >> $langfile
        for dir in $dir/*; do
                lang=${dir##*/}
@@ -23,15 +27,18 @@ find $dir -type d -name lang | while read dir; do
                        lang=id_NI
                ;;
                *-*)
-                       echo >&2 "Need mapping for $lang!"
-                       exit 1
+                       echo >&2 "ERROR: Need mapping for $lang!"
+                       rc=1
                ;;
                esac
                echo "%lang($lang) ${dir#$RPM_BUILD_ROOT}" >> $langfile
        done
-done
+done < $tmp
 
 if [ "$(egrep -v '(^%defattr|^$)' $langfile | wc -l)" -le 0 ]; then
        echo >&2 "$PROG: Error: international files not found!"
-       exit 1
+       rc=1
 fi
+
+rm -f $tmp
+exit $rc
This page took 0.100294 seconds and 4 git commands to generate.