Skip to content

Commit

Permalink
fix(git): track submodule changes too
Browse files Browse the repository at this point in the history
resolves #627
  • Loading branch information
JanDeDobbeleer committed Apr 11, 2021
1 parent 37a5f21 commit 66bddcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/segment_git.go
Expand Up @@ -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++
}
}
Expand Down

0 comments on commit 66bddcc

Please sign in to comment.