diff options
| author | Clar Fon <them@lightdark.xyz> | 2018-12-17 17:16:39 -0500 |
|---|---|---|
| committer | Clar Fon <them@lightdark.xyz> | 2018-12-17 17:19:22 -0500 |
| commit | 6130fc884bc1dff9bb835894a7bb2042c110b011 (patch) | |
| tree | 7801913445b940464cd29d7a8b56f4c48bc0e3e6 /src/bootstrap | |
| parent | 0d4f91905bf3071354e30c85f931d11bf2c0009a (diff) | |
| download | rust-6130fc884bc1dff9bb835894a7bb2042c110b011.tar.gz rust-6130fc884bc1dff9bb835894a7bb2042c110b011.zip | |
Add --progress to git submodule commands
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/bootstrap.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index d143dffb24b..09c87fdd1a8 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -678,10 +678,10 @@ class RustBuild(object): print("Updating submodule", module) - run(["git", "submodule", "-q", "sync", module], + run(["git", "submodule", "-q", "sync", "--progress", module], cwd=self.rust_root, verbose=self.verbose) run(["git", "submodule", "update", - "--init", "--recursive", module], + "--init", "--recursive", "--progress", module], cwd=self.rust_root, verbose=self.verbose) run(["git", "reset", "-q", "--hard"], cwd=module_path, verbose=self.verbose) |
