]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/namedown
Removed some obsolete distribution files
[wxWidgets.git] / distrib / msw / namedown
index 462141301e5c72dcb11e69a1a23ec357df8f1ee1..66435582873557de0108e0b1bb5d96261127afcc 100755 (executable)
@@ -33,7 +33,7 @@ case $# in
       elif [ -d "${oldname}" ]; then
         mv "${oldname}" "${oldname}.bak" 
         mv "${oldname}.bak" "${newname:-${oldname}}"
-        echo "Directory ${oldname} converted to directory ${newname:-${oldname}}"
+#        echo "Directory ${oldname} converted to directory ${newname:-${oldname}}"
 #        echo /dev/null
 #Don't convert if the file does not exist
       elif [ ! -f "${oldname}" ]; then
@@ -43,12 +43,12 @@ case $# in
 #        echo "${oldname} not converted, file ${newname} already exists" 2>&1
 #Don't move to subdirectories if they happen to exist
       elif [ -d "${newname}" ]; then
-        echo "${oldname} not converted, directory ${newname} already exists" 2>&1
+#        echo "${oldname} not converted, directory ${newname} already exists" 2>&1
 #Do it
       else
         mv "${oldname}" "${oldname}.bak" 
         mv "${oldname}.bak" "${newname:-${oldname}}"
-        echo "File ${oldname} converted to file ${newname:-${oldname}}"
+#        echo "File ${oldname} converted to file ${newname:-${oldname}}"
       fi
    done
     ;;