diff options
| author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-04 14:53:54 +0000 |
|---|---|---|
| committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-03-04 14:53:54 +0000 |
| commit | 657989ea6ef1a48e18079b0b779e41eb06e014a9 (patch) | |
| tree | 908231dbc312f130b9f528fc8b937f56ab2179b2 /lib | |
| parent | 21a335d4459f5f438e4b1e538fa6d436c059a61d (diff) | |
| download | ruby-657989ea6ef1a48e18079b0b779e41eb06e014a9.tar.gz ruby-657989ea6ef1a48e18079b0b779e41eb06e014a9.tar.xz ruby-657989ea6ef1a48e18079b0b779e41eb06e014a9.zip | |
* lib/fileutils.rb (mv): could not move a directory between
different filesystems. [ruby-dev:30411]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@11988 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/fileutils.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/fileutils.rb b/lib/fileutils.rb index 9216c7477..cf0c91b0a 100644 --- a/lib/fileutils.rb +++ b/lib/fileutils.rb @@ -505,7 +505,11 @@ module FileUtils File.rename s, d rescue Errno::EXDEV copy_entry s, d, true - File.unlink s + if options[:secure] + remove_entry_secure s, options[:force] + else + remove_entry s, options[:force] + end end rescue SystemCallError raise unless options[:force] @@ -518,7 +522,7 @@ module FileUtils module_function :move OPT_TABLE['mv'] = - OPT_TABLE['move'] = [:force, :noop, :verbose] + OPT_TABLE['move'] = [:force, :noop, :verbose, :secure] def rename_cannot_overwrite_file? #:nodoc: /djgpp|cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM |
