Skip to content

Commit

Permalink
Rollup merge of rust-lang#36098 - king6cong:master, r=alexcrichton
Browse files Browse the repository at this point in the history
fix git submodule status check

None
  • Loading branch information
Jonathan Turner authored Aug 31, 2016
2 parents 1afe1ea + 9ce47e3 commit bbb2d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ impl Build {
let path = Path::new(line[1..].split(' ').skip(1).next().unwrap());
let state = if line.starts_with('-') {
State::NotInitialized
} else if line.starts_with('*') {
} else if line.starts_with('+') {
State::OutOfSync
} else if line.starts_with(' ') {
State::MaybeDirty
Expand Down

0 comments on commit bbb2d1d

Please sign in to comment.