mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01:00
bundler: support new file naming convention (#6594)
This commit is contained in:
parent
efee47b5c0
commit
6b6f2b6dfd
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ _bundler-installed() {
|
||||||
_within-bundled-project() {
|
_within-bundled-project() {
|
||||||
local check_dir="$PWD"
|
local check_dir="$PWD"
|
||||||
while [ "$check_dir" != "/" ]; do
|
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)"
|
check_dir="$(dirname $check_dir)"
|
||||||
done
|
done
|
||||||
false
|
false
|
||||||
|
|
Loading…
Reference in a new issue