From: Adam Dickmeiss Date: Tue, 10 Jun 2003 12:12:35 +0000 (+0000) Subject: Ignore non-task files X-Git-Tag: tclrobot.0.2.0~17 X-Git-Url: http://jsfdemo.indexdata.com/?a=commitdiff_plain;h=31b855dd91ffa94d3503d77f363417192dae0cda;p=tclrobot.git Ignore non-task files --- diff --git a/robot.tcl b/robot.tcl index c79b410..231a5ca 100755 --- a/robot.tcl +++ b/robot.tcl @@ -1,5 +1,5 @@ #!/usr/bin/tclsh -# $Id: robot.tcl,v 1.37 2003/06/10 12:08:17 adam Exp $ +# $Id: robot.tcl,v 1.38 2003/06/10 12:12:35 adam Exp $ # proc RobotFileNext1 {area lead} { # puts "RobotFileNext1 area=$area lead=$lead" @@ -225,8 +225,10 @@ proc RobotStartJob {fname t} { set f [open $fname r] set xml [read $f] puts "Reading $fname" - regexp {([^<]*)} $xml x status close $f + if {![regexp {([^<]*)} $xml x status]} { + return + } if {$status == "done"} { puts "already done" return