diff options
author | Hiroshi SHIBATA <[email protected]> | 2024-02-16 17:57:38 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-02-16 17:57:38 +0900 |
commit | e3f452e5d7616fc1f1c2d9ddd70f0fca45971cd2 () | |
tree | 2e7e392e64449ec3c001d6f760144c673ab15a27 /tool/rbinstall.rb | |
parent | 9f4d5eb1f472645586eeadd00a346926b66491e3 (diff) |
Adjust indent
-rwxr-xr-x | tool/rbinstall.rb | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1050,12 +1050,12 @@ install?(:ext, :comm, :gem, :'bundled-gems') do # This gemspec keep the original dependencies path = "#{srcdir}/.bundle/gems/#{gem_name}/#{gem_name}.gemspec" unless File.exist?(path) - # Try to find the gemspec file for gems that hasn't own gemspec - path = "#{srcdir}/.bundle/specifications/#{gem_name}.gemspec" - unless File.exist?(path) - skipped[gem_name] = "gemspec not found" - next - end end end spec = load_gemspec(path, "#{srcdir}/.bundle/gems/#{gem_name}") |