Skip to content

Commit 9ce47e3

Browse files
committed
fix git submodule status check
1 parent 86dde9b commit 9ce47e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/lib.rs

+1-1
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)