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 6908e7a commit 6729f67Copy full SHA for 6729f67
1 file changed
src/bootstrap/src/core/build_steps/dist.rs
@@ -1060,11 +1060,7 @@ impl Step for PlainSourceTarball {
1060
cmd.arg("--sync").arg(manifest_path);
1061
}
1062
1063
- let config = if !builder.config.dry_run() {
1064
- cmd.capture().run(builder).stdout()
1065
- } else {
1066
- String::new()
1067
- };
+ let config = cmd.capture().run(builder).stdout();
1068
1069
let cargo_config_dir = plain_dst_src.join(".cargo");
1070
builder.create_dir(&cargo_config_dir);
0 commit comments