mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
fixed rvm warning
This commit is contained in:
parent
99c9dbed47
commit
aee8877988
1 changed files with 6 additions and 5 deletions
|
@ -32,11 +32,12 @@ function check_git_prompt_info() {
|
||||||
|
|
||||||
# Determine if we are using a gemset.
|
# Determine if we are using a gemset.
|
||||||
function rvm_gemset() {
|
function rvm_gemset() {
|
||||||
GEMSET=`rvm gemset list | grep '=>' | cut -b4-`
|
if hash rvm 2>/dev/null; then
|
||||||
if [[ -n $GEMSET ]]; then
|
GEMSET=`rvm gemset list | grep '=>' | cut -b4-`
|
||||||
echo "%{$fg[yellow]%}$GEMSET%{$reset_color%}|"
|
if [[ -n $GEMSET ]]; then
|
||||||
fi
|
echo "%{$fg[yellow]%}$GEMSET%{$reset_color%}|"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Determine the time since last commit. If branch is clean,
|
# Determine the time since last commit. If branch is clean,
|
||||||
|
|
Loading…
Reference in a new issue