We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
x dist --dry-run
1 parent 2b3db1c commit fb3ac44Copy full SHA for fb3ac44
src/bootstrap/dist.rs
@@ -902,7 +902,9 @@ impl Step for Src {
902
903
/// Creates the `rust-src` installer component
904
fn run(self, builder: &Builder<'_>) -> GeneratedTarball {
905
- builder.update_submodule(&Path::new("src/llvm-project"));
+ if !builder.config.dry_run() {
906
+ builder.update_submodule(&Path::new("src/llvm-project"));
907
+ }
908
909
let tarball = Tarball::new_targetless(builder, "rust-src");
910
0 commit comments