fix cleaning up tmp folder

This commit is contained in:
Pieter Noordhuis 2010-05-14 18:01:39 +02:00
parent 628e1c6910
commit 1488645e15
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@ proc main {} {
}
# clean up tmp
exec rm -rf test/tmp/*
exec rm -rf {*}[glob test/tmp/redis.conf.*]
exec rm -rf {*}[glob test/tmp/server.*]
}
main