mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/fileutils.rb (mkdir_p): remove trailing `/' befere mkdir(2). mkdir("nonexistdir/") does not work on NetBSD/Alpha 1.6.1.
* lib/fileutils.rb (fu_list): call to_str for all arguments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5170 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
50e61c533b
commit
d44d45450f
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
Thu Dec 11 20:54:28 2003 Minero Aoki <aamine@loveruby.net>
|
||||||
|
|
||||||
|
* lib/fileutils.rb (mkdir_p): remove trailing `/' befere mkdir(2).
|
||||||
|
mkdir("nonexistdir/") does not work on NetBSD/Alpha 1.6.1.
|
||||||
|
|
||||||
|
* lib/fileutils.rb (fu_list): call to_str for all arguments.
|
||||||
|
|
||||||
Thu Dec 11 20:07:01 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
Thu Dec 11 20:07:01 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
* lib/ftools.rb (makedirs): sync with fileutils.
|
* lib/ftools.rb (makedirs): sync with fileutils.
|
||||||
|
|
|
@ -170,7 +170,7 @@ module FileUtils
|
||||||
return *list if options[:noop]
|
return *list if options[:noop]
|
||||||
|
|
||||||
mode = options[:mode] || (0777 & ~File.umask)
|
mode = options[:mode] || (0777 & ~File.umask)
|
||||||
list.each do |path|
|
list.map {|path| path.sub(%r</\z>, '') }.each do |path|
|
||||||
stack = []
|
stack = []
|
||||||
until path == stack.last # dirname("/")=="/", dirname("C:/")=="C:/"
|
until path == stack.last # dirname("/")=="/", dirname("C:/")=="C:/"
|
||||||
stack.push path
|
stack.push path
|
||||||
|
@ -711,7 +711,7 @@ module FileUtils
|
||||||
end
|
end
|
||||||
|
|
||||||
def fu_list(arg)
|
def fu_list(arg)
|
||||||
arg.is_a?(Array) ? arg : [arg]
|
Array(arg).map {|path| path.to_str }
|
||||||
end
|
end
|
||||||
|
|
||||||
def fu_each_src_dest(src, dest)
|
def fu_each_src_dest(src, dest)
|
||||||
|
|
Loading…
Reference in a new issue