]> git.decadent.org.uk Git - dak.git/commitdiff
only use .bz2 files in Index
authorJoerg Jaspert <joerg@debian.org>
Sat, 3 Mar 2012 14:56:03 +0000 (15:56 +0100)
committerJoerg Jaspert <joerg@debian.org>
Sat, 3 Mar 2012 14:56:03 +0000 (15:56 +0100)
Signed-off-by: Joerg Jaspert <joerg@debian.org>
scripts/debian/generate-i18n-Index

index 9b166bd261217e653f2c83ba8aff5aaabd2d15e4..75a575856f394d95a42dd54444a58072d816fe52 100755 (executable)
@@ -10,7 +10,8 @@
 # On Debian systems, you can find the full text of the license in
 # /usr/share/common-licenses/GPL-2
 
-set -eu
+set -e
+set -u
 export LC_ALL=C
 
 usage () {
@@ -42,7 +43,7 @@ trap trap_exit EXIT HUP INT QUIT TERM
 exec 3>Index
 
 echo "SHA1:" >&3
-for file in Translation-* ; do
+for file in Translation-*.bz2 ; do
        sha=$(sha1sum "$file"); sha="${sha%% *}"
        size=$(stat -c %s "${file}")
        printf ' %s % 7s %s\n' "$sha" "$size" "$file" >&3