Skip to content

Commit bbb2d1d

Browse files
author
Jonathan Turner
authored
Rollup merge of #36098 - king6cong:master, r=alexcrichton
fix git submodule status check None
2 parents 1afe1ea + 9ce47e3 commit bbb2d1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ impl Build {
528528
let path = Path::new(line[1..].split(' ').skip(1).next().unwrap());
529529
let state = if line.starts_with('-') {
530530
State::NotInitialized
531-
} else if line.starts_with('*') {
531+
} else if line.starts_with('+') {
532532
State::OutOfSync
533533
} else if line.starts_with(' ') {
534534
State::MaybeDirty

0 commit comments

Comments
 (0)