summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2006-02-03 21:53:34 +0000
committerPaul W. Frields <stickster@gmail.com>2006-02-03 21:53:34 +0000
commitf1b74cce03dec3cb85a582d58bac64cf358007aa (patch)
tree888aa4e2468bd5491e912c8c8aa292ec0373eb6f /bin
parent2cf123d1619474f3337e20e56a24b0f6515ac14b (diff)
downloadfedora-doc-utils-f1b74cce03dec3cb85a582d58bac64cf358007aa.tar.gz
fedora-doc-utils-f1b74cce03dec3cb85a582d58bac64cf358007aa.tar.xz
fedora-doc-utils-f1b74cce03dec3cb85a582d58bac64cf358007aa.zip
A bit of message cleanup, make sure 'Considering' message doesn't get sourced
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}"