Fix error in git prompt script
This commit is contained in:
parent
54b658e071
commit
29a11032c6
1 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ git__prompt () {
|
|||
if [ -z "$branch" ]
|
||||
then
|
||||
head=$(git rev-parse --short HEAD 2>&1)
|
||||
if [[ "$head" =~ fatal* ]]
|
||||
if [ $(echo "$head" | grep '^fatal') ]
|
||||
then
|
||||
branch='{no commits}'
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue