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 43d34d8 commit fe0fc3cCopy full SHA for fe0fc3c
src/bootstrap/lib.rs
@@ -1168,7 +1168,9 @@ impl Build {
1168
/// Copies a file from `src` to `dst`
1169
pub fn copy(&self, src: &Path, dst: &Path) {
1170
if self.config.dry_run { return; }
1171
- self.verbose(&format!("copying {:?} => {:?}", src, dst));
+ if dst.display().to_string().contains("rust-std") {
1172
+ self.verbose(&format!("copying {:?} => {:?}", src, dst));
1173
+ }
1174
let _ = fs::remove_file(&dst);
1175
let metadata = t!(src.symlink_metadata());
1176
if metadata.file_type().is_symlink() {
0 commit comments