fix(git): track submodule changes too

resolves #627
This commit is contained in:
Jan De Dobbeleer 2021-04-11 19:57:06 +02:00 committed by Jan De Dobbeleer
parent 37a5f21315
commit 66bddcc8c9

View file

@ -392,7 +392,7 @@ func (g *git) parseGitStats(output []string, working bool) *gitStatus {
status.added++
case "U":
status.unmerged++
case "M", "R", "C":
case "M", "R", "C", "m":
status.modified++
}
}