We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 894a498 commit 02c2a85Copy full SHA for 02c2a85
src/bootstrap/src/core/build_steps/dist.rs
@@ -1010,6 +1010,9 @@ impl Step for PlainSourceTarball {
1010
if builder.rust_info().is_managed_git_subrepository()
1011
|| builder.rust_info().is_from_tarball()
1012
{
1013
+ // FIXME: This code looks _very_ similar to what we have in `src/core/build_steps/vendor.rs`
1014
+ // perhaps it should be removed in favor of making `dist` perform the `vendor` step?
1015
+
1016
// Ensure we have all submodules from src and other directories checked out.
1017
for submodule in builder.get_all_submodules() {
1018
builder.update_submodule(Path::new(submodule));
0 commit comments