Skip to content

Commit 876181e

Browse files
committed
Add another missing case for renamed files
1 parent 6c74e8f commit 876181e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/info.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ impl Info {
539539
match prefix.trim() {
540540
"D" => deleted += 1,
541541
"A" | "AM" | "??" => added += 1,
542-
"M" | "MM" => modified += 1,
542+
"M" | "MM" | "R" => modified += 1,
543543
_ => {}
544544
}
545545
}

0 commit comments

Comments
 (0)