Merge pull request #845 from tjwallace/bundler_plugin_fix

Fix bundler plugin for root level folders
This commit is contained in:
Robby Russell 2012-01-22 13:11:39 -08:00
commit ac910b85bd
1 changed files with 1 additions and 1 deletions

View File

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