diff options
author | David RodrÃguez <[email protected]> | 2019-06-17 13:17:54 +0200 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2019-08-03 09:29:56 +0900 |
commit | 4089f8df1e985ec9b5347078214646be946229cc (patch) | |
tree | 4d8fd2056ef04acce2618328a094662b5e0b0917 /lib | |
parent | e59b57a3a7d7d22baf80754e1ec069cc8cd4d561 (diff) |
[bundler/bundler] Use real paths for `bundle clean`
https://github.com/bundler/bundler/commit/0646f9e286
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bundler/definition.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/definition.rb b/lib/bundler/definition.rb index 76950ff96a..4664eec24d 100644 --- a/lib/bundler/definition.rb +++ b/lib/bundler/definition.rb @@ -317,7 +317,7 @@ module Bundler end def spec_git_paths - sources.git_sources.map {|s| s.path.to_s } + sources.git_sources.map {|s| File.realpath(s.path) } end def groups |