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 04ccee1 commit 43d34d8Copy full SHA for 43d34d8
appveyor.yml
@@ -93,7 +93,7 @@ environment:
93
--target=i586-pc-windows-msvc
94
--enable-full-tools
95
--enable-profiler
96
- SCRIPT: python x.py dist
+ SCRIPT: python x.py dist -vv
97
DIST_REQUIRE_ALL_TOOLS: 1
98
DEPLOY: 1
99
CI_JOB_NAME: dist-i686-msvc
src/bootstrap/lib.rs
@@ -1168,6 +1168,7 @@ 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));
1172
let _ = fs::remove_file(&dst);
1173
let metadata = t!(src.symlink_metadata());
1174
if metadata.file_type().is_symlink() {
0 commit comments