From 9fb1b588820adae468c962ce37c02b274a2a4287 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 16 Feb 2016 00:51:48 +0000 Subject: rbinstall.rb: drive letter in without_destdir * tool/rbinstall.rb (without_destdir): just strip a drive letter which is prepended by with_destdir. pointed out by @DavidEGrayson. https://github.com/ruby/ruby/commit/0e5f9ae#commitcomment-16101763 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/rbinstall.rb | 1 - 1 file changed, 1 deletion(-) (limited to 'tool') diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb index 1cca55d919..72cca6c18c 100755 --- a/tool/rbinstall.rb +++ b/tool/rbinstall.rb @@ -282,7 +282,6 @@ end def without_destdir(dir) return dir if !$destdir or $destdir.empty? - dir = dir.sub(/\A\w:/, '') if File::PATH_SEPARATOR == ';' dir.start_with?($destdir) ? dir[$destdir.size..-1] : dir end -- cgit v1.2.3