Skip to content

Commit 43d34d8

Browse files
committed
Debug the stable release on Windows more
1 parent 04ccee1 commit 43d34d8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ environment:
9393
--target=i586-pc-windows-msvc
9494
--enable-full-tools
9595
--enable-profiler
96-
SCRIPT: python x.py dist
96+
SCRIPT: python x.py dist -vv
9797
DIST_REQUIRE_ALL_TOOLS: 1
9898
DEPLOY: 1
9999
CI_JOB_NAME: dist-i686-msvc

src/bootstrap/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1168,6 +1168,7 @@ impl Build {
11681168
/// Copies a file from `src` to `dst`
11691169
pub fn copy(&self, src: &Path, dst: &Path) {
11701170
if self.config.dry_run { return; }
1171+
self.verbose(&format!("copying {:?} => {:?}", src, dst));
11711172
let _ = fs::remove_file(&dst);
11721173
let metadata = t!(src.symlink_metadata());
11731174
if metadata.file_type().is_symlink() {

0 commit comments

Comments
 (0)