summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-22 04:21:37 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-22 04:21:37 +0000
commit34dc62a8b3ed0a8add61618c9e698f7cb11009ff (patch)
treec5a241c487e4e446ec3ce6dce1282aef7cc382e2
parentef877473193513e245a5e7a2a979b68463ee946a (diff)
downloadruby-34dc62a8b3ed0a8add61618c9e698f7cb11009ff.tar.gz
ruby-34dc62a8b3ed0a8add61618c9e698f7cb11009ff.tar.xz
ruby-34dc62a8b3ed0a8add61618c9e698f7cb11009ff.zip
* bootstraptest/runner.rb (in_temporary_working_directory):
don't remove the directory specified by --dir. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13227 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--bootstraptest/runner.rb1
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a6bd0c107..eca4ca526 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Aug 22 13:02:26 2007 Tanaka Akira <akr@fsij.org>
+
+ * bootstraptest/runner.rb (in_temporary_working_directory):
+ don't remove the directory specified by --dir.
+
Wed Aug 22 05:51:23 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* util.c (ruby_strtod): replaced by the implementation by David
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index 117f03036..8a2597bcb 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