Index: mttroot/mtt/bin/trans/mtt_error ================================================================== --- mttroot/mtt/bin/trans/mtt_error +++ mttroot/mtt/bin/trans/mtt_error @@ -12,10 +12,13 @@ ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ +## Revision 1.6 1998/03/05 10:17:41 peterg +## Cosmetic change +## ## Revision 1.5 1998/03/05 10:14:37 peterg ## Toned down the error warning message ## ## Revision 1.4 1998/02/26 10:21:51 peterg ## Revised to take account of new (??) wc output - now echos the file @@ -36,12 +39,12 @@ # Test for errors and print if any err_length=`wc -c <$error_file | awk '{print $1}'` if [ "$err_length" != "0" ] then - echo INFORMATION: An MTT transformation has generated the following messages - echo which may not be important + echo "INFORMATION: An MTT transformation has generated the following messages" + echo " (which may not be important)" cat $error_file exit 1 else exit 0 fi