summaryrefslogtreecommitdiff
path: root/lib/bundler/cli.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-04-21 19:34:26 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-04-28 11:13:06 +0900
commit442866c2d445cbd30a0f4ae651c828ced0f8976c (patch)
tree320cbd238f5ca93979849457559ba7cee920c51f /lib/bundler/cli.rb
parent5b77fc8abe4d3c347b5a846c8b330a3bb51d1ef8 (diff)
[rubygems/rubygems] Pass the rubocop lint
https://github.com/rubygems/rubygems/commit/d4486ca061
Diffstat (limited to 'lib/bundler/cli.rb')
-rw-r--r--lib/bundler/cli.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb
index 22fca7fdf4..3ef0e28f26 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -122,7 +122,7 @@ module Bundler
else command = "bundle-#{cli}"
end
- man_path = File.expand_path("../../../man", __FILE__)
+ man_path = File.expand_path("../../../man", __FILE__)
# man files are located under the share directory with the default gems of bundler
man_path = File.expand_path("../../../../../share/man/man1", __FILE__) unless File.directory?(man_path)
man_pages = Hash[Dir.glob(File.join(man_path, "*")).grep(/.*\.\d*\Z/).collect do |f|