-
Notifications
You must be signed in to change notification settings - Fork 13k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x.py: fixup 6130fc884bc1dff9bb835894a7bb2042c110b011, fix submodule handling #57082
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
@bors p=1 |
@pietroalbini could you p=2 (there's already a clippy update that has p=1 but it's less important imo) ^^ |
Right, didn't see that. The PR still has to be approved, so this might not be necessary. |
Oh, whoops, I didn't notice that. It worked when I ran it locally, so, I didn't bother testing it further. Yeah, it should only be removed from the |
@bors r+ |
📌 Commit 4ad59b997979e481c57a2c87edd3c5c8e184dffb has been approved by |
@estebank isn't it better to wait until #57082 (comment) is done? |
@bors r- |
4ad59b9
to
fc9a572
Compare
./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 rust-lang#57080
fc9a572
to
49eb1e5
Compare
I updated the PR to just fix the sync command. |
@bors r+ |
📌 Commit 49eb1e5 has been approved by |
x.py: fixup 6130fc8, fix submodule handling ./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
☀️ Test successful - status-appveyor, status-travis |
./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