about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Turner <jonathandturner@users.noreply.github.com>2016-08-31 13:53:34 -0700
committerGitHub <noreply@github.com>2016-08-31 13:53:34 -0700
commitbbb2d1d0aca98e68ad3ab6ab41767395191b8d4c (patch)
tree3cbf866f997110eb2f482aecf3fac12a7e3782c2
parent1afe1ea003ac696c429a3304178eac88d75f3670 (diff)
parent9ce47e318aa1b8ec9442d19e40b8d00c99b65239 (diff)
downloadrust-bbb2d1d0aca98e68ad3ab6ab41767395191b8d4c.tar.gz
rust-bbb2d1d0aca98e68ad3ab6ab41767395191b8d4c.zip
Rollup merge of #36098 - king6cong:master, r=alexcrichton
fix git submodule status check

None
-rw-r--r--src/bootstrap/lib.rs2
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