File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -127,11 +127,11 @@ fn install_prebuilt() {
127
127
let output = PathBuf :: from ( & get ! ( "OUT_DIR" ) ) ;
128
128
let new_library_full_path = output. join ( & library_file) ;
129
129
if new_library_full_path. exists ( ) {
130
- println ! ( "File {} already exists, deleting." , new_library_full_path. display( ) ) ;
130
+ log ! ( "File {} already exists, deleting." , new_library_full_path. display( ) ) ;
131
131
std:: fs:: remove_file ( & new_library_full_path) . unwrap ( ) ;
132
132
}
133
133
134
- println ! ( "Copying {} to {}..." , library_full_path. display( ) , new_library_full_path. display( ) ) ;
134
+ log ! ( "Copying {} to {}..." , library_full_path. display( ) , new_library_full_path. display( ) ) ;
135
135
std:: fs:: copy ( & library_full_path, & new_library_full_path) . unwrap ( ) ;
136
136
println ! ( "cargo:rustc-link-search={}" , output. display( ) ) ;
137
137
}
You can’t perform that action at this time.
0 commit comments