From cf182677383acdcac18ce622e57693c9c20c082c Mon Sep 17 00:00:00 2001 From: ToKiNoBug Date: Mon, 29 Apr 2024 10:14:01 +0800 Subject: [PATCH] Output copy --- src/bin/deploy-dll.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/bin/deploy-dll.rs b/src/bin/deploy-dll.rs index d39db0f..d845cee 100644 --- a/src/bin/deploy-dll.rs +++ b/src/bin/deploy-dll.rs @@ -497,9 +497,7 @@ fn deploy_dll(target_binary: &str, target_dir: &str, objdump_file: &str, binary_ } if let Some(location) = &loc { - if args.verbose { - println!("Copying \"{location}\" to \"{target_dir}\""); - } + println!("Copying \"{location}\" to \"{target_dir}\""); std::fs::copy(location, &expected_filename).expect("Failed to copy dll"); } else if args.allow_missing { println!("Failed to find dll \"{dep}\", required by \"{target_binary}\"");