summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/migrate-lang6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/migrate-lang b/bin/migrate-lang
index 2ade27f..cd3f09c 100755
--- a/bin/migrate-lang
+++ b/bin/migrate-lang
@@ -17,16 +17,16 @@ echo "#/bin/sh"
for theLang in ${LANGUAGES}
do
if [ ! -d "${theLang}" ]; then
- echo "echo 'Creating the ${theLang}' subdirectory."
+ echo "echo 'Creating the ${theLang} subdirectory.'"
echo mkdir "${theLang}"
echo cvs add "${theLang}"
changes=yes
fi
- echo "echo 'Trying to populate the ${theLang}' subdirectory."
+ echo "echo 'Trying to populate the ${theLang} subdirectory.'"
ls *-${theLang}.xml 2>/dev/null |
while read x
do
- echo "Considering ${x}"
+ echo "echo 'Considering ${x}'"
if [ ! -f ${theLang}/${x} ]; then
echo "cp ${x} ${theLang}/${x}"
echo "cvs add ${theLang}/${x}"