Overview
Comment: | Updated teapot-client list to default to using the current system information |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 222dca07e6dcc319ab9d808f8b21f64481eeb8fe |
User & Date: | rkeene on 2009-04-18 03:58:26 |
Other Links: | manifest | tags |
Context
2009-04-18
| ||
04:00 | Updated teapot-client to (possibly...) work on Windows check-in: 847b413b81 user: rkeene tags: trunk | |
03:58 | Updated teapot-client list to default to using the current system information check-in: 222dca07e6 user: rkeene tags: trunk | |
03:39 | Changed build script to copy kits to root of archive check-in: 40f0c560a5 user: rkeene tags: trunk | |
Changes
Modified client/teapot-client.tcl from [f8b2da0698] to [2810807ee8].
44 44 foreach ext $failedexts { 45 45 puts " $ext" 46 46 } 47 47 exit 1 48 48 } 49 49 } 50 50 "list" { 51 - set os "*" 52 - set cpu "*" 51 + set os [string tolower $tcl_platform(os)] 52 + set cpu [string tolower $tcl_platform(machine)] 53 53 if {[llength $argv] > 0} { 54 54 set os [lindex $argv 0] 55 55 } 56 56 if {[llength $argv] > 1} { 57 57 set cpu [lindex $argv 1] 58 58 } 59 59