Update for liquidprompt v2.0
In v2.0 (the current version) of liquidprompt, the function `_lp_escape()` was renamed to `__lp_escape()`.pull/2203/head
parent
e38696a0ac
commit
9430177c83
|
|
@ -39,7 +39,7 @@ _lp_git_branch()
|
|||
# Recent versions of Git support the --short option for symbolic-ref, but
|
||||
# not 1.7.9 (Ubuntu 12.04)
|
||||
if branch="$(\git symbolic-ref -q HEAD)"; then
|
||||
_lp_escape "$(\git rev-parse --short=5 -q HEAD 2>/dev/null):${branch#refs/heads/}"
|
||||
__lp_escape "$(\git rev-parse --short=5 -q HEAD 2>/dev/null):${branch#refs/heads/}"
|
||||
else
|
||||
# In detached head state, use commit instead
|
||||
# No escape needed
|
||||
|
|
|
|||
Loading…
Reference in New Issue