diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2018-12-24 20:19:49 +0100 |
|---|---|---|
| committer | Matthias Krüger <matthias.krueger@famsik.de> | 2018-12-24 20:23:00 +0100 |
| commit | 49eb1e54199fa8529ff7c13bf6dd6a772b63c63f (patch) | |
| tree | 88986ef3deaa01567e5d6042095ae7e13d024984 | |
| parent | 50f3d6eccb85a24a02b7c1daf5e242768dddf3b5 (diff) | |
| download | rust-49eb1e54199fa8529ff7c13bf6dd6a772b63c63f.tar.gz rust-49eb1e54199fa8529ff7c13bf6dd6a772b63c63f.zip | |
x.py: fixup 6130fc884bc1dff9bb835894a7bb2042c110b011
./x.py used to automatically check out the right commit when a submodule was outdated and ./x.py build was run and submodules handling was enabled in config.toml (submodules = true). But it threw an error: [...] failed to run: git submodule -q sync --progress src/tools/clippy The commit removes the --progress from git submodule call. Fixes #57080
| -rw-r--r-- | src/bootstrap/bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index 09c87fdd1a8..958cc665f9e 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -678,7 +678,7 @@ class RustBuild(object): print("Updating submodule", module) - run(["git", "submodule", "-q", "sync", "--progress", module], + run(["git", "submodule", "-q", "sync", module], cwd=self.rust_root, verbose=self.verbose) run(["git", "submodule", "update", "--init", "--recursive", "--progress", module], |
