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.
1 parent f18335e commit ae12a0cCopy full SHA for ae12a0c
src/bootstrap/dist.rs
@@ -1288,6 +1288,11 @@ impl Step for Extended {
1288
1289
let etc = builder.src.join("src/etc/installer");
1290
1291
+ // Avoid producing tarballs during a dry run.
1292
+ if builder.config.dry_run {
1293
+ return;
1294
+ }
1295
+
1296
// When rust-std package split from rustc, we needed to ensure that during
1297
// upgrades rustc was upgraded before rust-std. To avoid rustc clobbering
1298
// the std files during uninstall. To do this ensure that rustc comes
0 commit comments