diff options
| author | Jonathan Turner <jonathandturner@users.noreply.github.com> | 2016-08-31 13:53:34 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-31 13:53:34 -0700 |
| commit | bbb2d1d0aca98e68ad3ab6ab41767395191b8d4c (patch) | |
| tree | 3cbf866f997110eb2f482aecf3fac12a7e3782c2 /src | |
| parent | 1afe1ea003ac696c429a3304178eac88d75f3670 (diff) | |
| parent | 9ce47e318aa1b8ec9442d19e40b8d00c99b65239 (diff) | |
| download | rust-bbb2d1d0aca98e68ad3ab6ab41767395191b8d4c.tar.gz rust-bbb2d1d0aca98e68ad3ab6ab41767395191b8d4c.zip | |
Rollup merge of #36098 - king6cong:master, r=alexcrichton
fix git submodule status check None
Diffstat (limited to 'src')
| -rw-r--r-- | src/bootstrap/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index a487c95fec2..dbf29cda492 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -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 |
