X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/c911aef3128f289dbf3a7c2f6bc92b9e6bed82f2..98e9afe73a2df757c892dc66046747b13898f140:/.zsh/zshrc/85_git_prompt diff --git a/.zsh/zshrc/85_git_prompt b/.zsh/zshrc/85_git_prompt index 9d05cca..7e445b0 100644 --- a/.zsh/zshrc/85_git_prompt +++ b/.zsh/zshrc/85_git_prompt @@ -15,14 +15,14 @@ _get_git_cur_branch() { } _is_git_repo() { - [ $(git rev-parse --is-inside-work-tree) = true ] + [ "$(git rev-parse --is-inside-work-tree)" = true ] } _set_git_psvar() { if _is_git_repo; then psvar[1]="$(_get_git_cur_branch)" else - unset "psvar[1]" + [ -n "$psvar[1]" ] && unset "psvar[1]" fi }