Overview
Comment: | Added current dir to end of path so that on systems without . in the path the script will still be found |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ae5dd4f3a63bd2e1c25623faba881cca |
User & Date: | matt on 2012-03-25 15:15:25 |
Other Links: | manifest | tags |
Context
2012-03-26
| ||
00:23 | Add trimming of tests from launch list to cut down on irrelevant queries and speed up launching check-in: 5501f178c7 user: matt tags: trunk | |
2012-03-25
| ||
15:15 | Added current dir to end of path so that on systems without . in the path the script will still be found check-in: ae5dd4f3a6 user: matt tags: trunk | |
15:05 | Launch the remove-runs process in an xterm check-in: 1849a06c5d user: matt tags: trunk | |
Changes
Modified utils/mt_ezstep from [d882ace026] to [bafa45892c].
︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Call like this: # mt_ezstep stepname prevstepname command .... # if [ "x$1" == "x" ];then echo "Usage: $usage" exit fi stepname=$1;shift prevstepname=$1;shift command=$* allstatus=99 | > > > > | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # Call like this: # mt_ezstep stepname prevstepname command .... # if [ "x$1" == "x" ];then echo "Usage: $usage" exit fi # Since the user may not have . on the path and since we are likely to want to # run test scripts in the current directory add the current dir to the path export PATH=$PATH:$PWD stepname=$1;shift prevstepname=$1;shift command=$* allstatus=99 |
︙ | ︙ |