Overview
Comment: | Fixed bug in test arg to if - missing "". |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
7fafb4c628c8e3d33b169f6e6e463cce |
User & Date: | gawthrop@users.sourceforge.net on 1996-11-12 08:52:57 |
Other Links: | branch diff | manifest | tags |
Context
1996-11-12
| ||
09:11:20 | Removed all the hoorrible name changes check-in: 3c9f9682b3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:52:57 | Fixed bug in test arg to if - missing "". check-in: 7fafb4c628 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1996-11-11
| ||
17:23:03 | Added numpar.m requirement to all .m targets check-in: 278efbc346 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [2a2d79484c] to [6004e5d794].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | - + + + + | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: mtt |
︙ | |||
165 166 167 168 169 170 171 | 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | - + | echo echo 'MTT (Model Transformation Tools) version 2.1++' echo 'This is free software with ABSOLUTELY NO WARRANTY.' echo 'Type `mtt warranty'\' 'for details.' echo fi |
︙ | |||
270 271 272 273 274 275 276 | 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | - + - - + | file_exists=`ls $2_abg.fig 2> /dev/null` if [ -n "$file_exists" ]; then if [ "$quiet" != "quiet" ]; then echo $2_abg.fig exists already - no action taken fi else path_name=$3 |
︙ | |||
367 368 369 370 371 372 373 | 369 370 371 372 373 374 375 376 377 378 379 380 381 382 | - | echo Version control is not appropriate for representation $2 exit ;; esac fi # This is the main mtt programme |
︙ |