0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

fix(jenv): quote % in jenv_prompt_info

This commit is contained in:
Marc Cornellà 2021-12-26 19:34:30 +01:00
parent 42afa6e2ea
commit e7390a8603
No known key found for this signature in database
GPG key ID: 0314585E776A9C1B

View file

@ -18,13 +18,19 @@ if [[ $FOUND_JENV -eq 1 ]]; then
(( $+commands[jenv] )) || export PATH="${jenvdir}/bin:$PATH"
eval "$(jenv init - zsh)"
function jenv_prompt_info() { jenv version-name 2>/dev/null }
function jenv_prompt_info() {
local version="$(jenv version-name 2>/dev/null)"
echo "${version:gs/%/%%}"
}
if [[ -d "${jenvdir}/versions" ]]; then
export JENV_ROOT=$jenvdir
fi
else
function jenv_prompt_info() { echo "system: $(java -version 2>&1 | cut -f 2 -d ' ')" }
function jenv_prompt_info() {
local version="$(java -version 2>&1 | cut -d' ' -f2)"
echo "system: ${version:gs/%/%%}"
}
fi
unset jenvdir jenvdirs FOUND_JENV