bundler: support new file naming convention (#6594)

pull/8289/head
Vsevolod Romashov 2019-10-18 22:55:56 +03:00 committed by Marc Cornellà
parent efee47b5c0
commit 6b6f2b6dfd
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ _bundler-installed() {
_within-bundled-project() {
local check_dir="$PWD"
while [ "$check_dir" != "/" ]; do
[ -f "$check_dir/Gemfile" ] && return
[ -f "$check_dir/Gemfile" -o -f "$check_dir/gems.rb" ] && return
check_dir="$(dirname $check_dir)"
done
false