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 8010365 commit 116223eCopy full SHA for 116223e
src/bootstrap/dist.rs
@@ -897,7 +897,9 @@ impl Step for Src {
897
898
/// Creates the `rust-src` installer component
899
fn run(self, builder: &Builder<'_>) -> GeneratedTarball {
900
- builder.update_submodule(&Path::new("src/llvm-project"));
+ if !builder.config.dry_run() {
901
+ builder.update_submodule(&Path::new("src/llvm-project"));
902
+ }
903
904
let tarball = Tarball::new_targetless(builder, "rust-src");
905
0 commit comments