Fix unlink
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 10 Jun 2003 12:46:04 +0000 (12:46 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 10 Jun 2003 12:46:04 +0000 (12:46 +0000)
robot.tcl

index 35b1091..93604a8 100755 (executable)
--- a/robot.tcl
+++ b/robot.tcl
@@ -1,5 +1,5 @@
 #!/usr/bin/tclsh 
-# $Id: robot.tcl,v 1.39 2003/06/10 12:29:48 adam Exp $
+# $Id: robot.tcl,v 1.40 2003/06/10 12:46:04 adam Exp $
 #
 proc RobotFileNext1 {area lead} {
     # puts "RobotFileNext1 area=$area lead=$lead"
@@ -131,7 +131,7 @@ proc RobotFileUnlink {task area host path} {
     for {set i $l} {$i > 0} {incr i -1} {
         set path [join [lrange $comp 0 $i] /]
        if {![catch {glob $path/*}]} return
-        exec rmdir ./$path
+        exec rmdir $path
     }
     # puts "RobotFileUnlink end"
 }