mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 05:40:08 +00:00
Fix incorrect error message when running bi without having bundler installed (#7112)
This commit is contained in:
parent
f75d096c1a
commit
08a2808636
1 changed files with 6 additions and 4 deletions
|
@ -54,8 +54,12 @@ done
|
||||||
## Functions
|
## Functions
|
||||||
|
|
||||||
bundle_install() {
|
bundle_install() {
|
||||||
if _bundler-installed && _within-bundled-project; then
|
if ! _bundler-installed; then
|
||||||
local bundler_version=`bundle --version | cut -d' ' -f3`
|
echo "Bundler is not installed"
|
||||||
|
elif ! _within-bundled-project; then
|
||||||
|
echo "Can't 'bundle install' outside a bundled project"
|
||||||
|
else
|
||||||
|
local bundler_version=`bundle version | cut -d' ' -f3`
|
||||||
if [[ $bundler_version > '1.4.0' || $bundler_version = '1.4.0' ]]; then
|
if [[ $bundler_version > '1.4.0' || $bundler_version = '1.4.0' ]]; then
|
||||||
if [[ "$OSTYPE" = (darwin|freebsd)* ]]
|
if [[ "$OSTYPE" = (darwin|freebsd)* ]]
|
||||||
then
|
then
|
||||||
|
@ -67,8 +71,6 @@ bundle_install() {
|
||||||
else
|
else
|
||||||
bundle install $@
|
bundle install $@
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
echo "Can't 'bundle install' outside a bundled project"
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue