From 00e6d5da69fd986b100fd9da18f490d201bd5dd9 Mon Sep 17 00:00:00 2001 From: akr Date: Wed, 22 Aug 2007 04:21:37 +0000 Subject: [PATCH] * bootstraptest/runner.rb (in_temporary_working_directory): don't remove the directory specified by --dir. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13227 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ bootstraptest/runner.rb | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a6bd0c1077..eca4ca5266 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 22 13:02:26 2007 Tanaka Akira + + * bootstraptest/runner.rb (in_temporary_working_directory): + don't remove the directory specified by --dir. + Wed Aug 22 05:51:23 2007 Yukihiro Matsumoto * util.c (ruby_strtod): replaced by the implementation by David diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb index 117f030365..8a2597bcb2 100644 --- a/bootstraptest/runner.rb +++ b/bootstraptest/runner.rb @@ -205,7 +205,6 @@ end def in_temporary_working_directory(dir) if dir - FileUtils.rm_rf dir Dir.mkdir dir Dir.chdir(dir) { yield