From 469ee9dda129b191b48d2a9fa56a889cc4751055 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Sat, 20 Jun 2009 22:25:50 +0300 Subject: [PATCH] Add double quotes to prevent shell expansion in pack. --- pack | 2 +- wrap | 18 ++---------------- 2 files changed, 3 insertions(+), 17 deletions(-) diff --git a/pack b/pack index d72ad79..14033f1 100755 --- a/pack +++ b/pack @@ -38,7 +38,7 @@ for BRANCH in $TRUNK $BRANCHES; do echo -e "Branch: $BLUE$BRANCH"$ENDCOLOR DIR="$PREFIX-$BRANCH" mkdir "$LCODE-temp" - for file in `find $DIR -name *.lt.po`; do + for file in `find $DIR -name "*.$LCODE.po"`; do bfile=`basename $file` echo -n "Processing catalog $bfile... "; d=`echo "$bfile" | sed "s/.$LCODE.po//"` diff --git a/wrap b/wrap index 3a26adf..544f8fb 100755 --- a/wrap +++ b/wrap @@ -1,23 +1,9 @@ #!/bin/bash -# Compile translations -# Copyright (C) 2007-2008 Andrius Štikonas -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# Wrap po files. +# This file is in public domain. for file in `ls *.po`; do msgattrib $file > $file.temp mv $file.temp $file done -echo -e $GREEN"Finished."$ENDCOLOR