forked from extern/ohmyzsh
fix(git-prompt): fix clean prompt when stash is not empty (#9978)
Fixes #9978
This commit is contained in:
@ -81,7 +81,7 @@ for st in status:
|
||||
staged.append(st)
|
||||
|
||||
stashed = get_stash()
|
||||
if not changed and not staged and not conflicts and not untracked and not stashed:
|
||||
if not changed and not staged and not conflicts and not untracked:
|
||||
clean = 1
|
||||
else:
|
||||
clean = 0
|
||||
|
Reference in New Issue
Block a user