Overview
Comment:Changed $() to ``
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 9fd5edce9d63f29b8aef33a57968c5d704bbed04e8fbd3247ba205f951bb5800
User & Date: gawthrop@users.sourceforge.net on 1996-08-26 09:46:37
Other Links: branch diff | manifest | tags
Context
1996-08-26
10:04:25
Fixed error due to a line wrap. check-in: 5f796466c0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
09:46:37
Changed $() to `` check-in: 9fd5edce9d user: gawthrop@users.sourceforge.net tags: origin/master, trunk
1996-08-25
10:13:37
Initial revision check-in: 459e1a3aa3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes

Modified mttroot/mtt/bin/trans/mtt_error from [a0b039f697] to [fa9d93d4c2].

10
11
12
13
14
15
16



17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright (c) P.J.Gawthrop, 1996

###############################################################
## Version control history
###############################################################
## $Id$
## $Log$



###############################################################

error_file=$1;

# Test for errors and print if any
err_length=$(wc -c <$error_file)
if [ $err_length != "0" ]
then
  echo MTT has failed with the following errors '...'
  cat $error_file
  exit 1
else
  exit 0
fi







>
>
>





|








10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright (c) P.J.Gawthrop, 1996

###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.1  1996/08/25  09:20:00  peter
# Initial revision
#
###############################################################

error_file=$1;

# Test for errors and print if any
err_length=`wc -c <$error_file`
if [ $err_length != "0" ]
then
  echo MTT has failed with the following errors '...'
  cat $error_file
  exit 1
else
  exit 0
fi


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]