From f1b74cce03dec3cb85a582d58bac64cf358007aa Mon Sep 17 00:00:00 2001 From: "Paul W. Frields" Date: Fri, 3 Feb 2006 21:53:34 +0000 Subject: A bit of message cleanup, make sure 'Considering' message doesn't get sourced --- bin/migrate-lang | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin') 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}" -- cgit