mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-06-26 12:32:10 +02:00
fix(lib): fix status exit code check in git_prompt_status
(#10275)
This commit is contained in:
parent
1c9a64ece6
commit
07cdd7a539
@ -206,7 +206,8 @@ function git_prompt_status() {
|
|||||||
STASHED UNMERGED AHEAD BEHIND DIVERGED
|
STASHED UNMERGED AHEAD BEHIND DIVERGED
|
||||||
)
|
)
|
||||||
|
|
||||||
local status_text="$(__git_prompt_git status --porcelain -b 2> /dev/null)"
|
local status_text
|
||||||
|
status_text="$(__git_prompt_git status --porcelain -b 2> /dev/null)"
|
||||||
|
|
||||||
# Don't continue on a catastrophic failure
|
# Don't continue on a catastrophic failure
|
||||||
if [[ $? -eq 128 ]]; then
|
if [[ $? -eq 128 ]]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user