зеркало из https://github.com/github/ruby.git
Simplified single script case
Simply use `File.basename` to remove the directory name (and suffix), instead of `gsub` which can replace unintended parts.
This commit is contained in:
Родитель
eb75f0d134
Коммит
8dab71b9d0
|
@ -675,7 +675,7 @@ module RbInstall
|
|||
remove_prefix(prefix, ruby_source)
|
||||
end
|
||||
else
|
||||
[remove_prefix(File.dirname(@gemspec) + '/', @gemspec.gsub(/gemspec/, 'rb'))]
|
||||
[File.basename(@gemspec, '.gemspec') + '.rb']
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче