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 @@ -176,7 +176,7 @@ fn main() -> std::io::Result<()> {
176
176
& code_ranges,
177
177
)
178
178
}
179
- std:: fs:: create_dir_all ( & src_archive_file. parent ( ) . unwrap ( ) ) ?;
179
+ std:: fs:: create_dir_all ( src_archive_file. parent ( ) . unwrap ( ) ) ?;
180
180
std:: fs:: copy ( & path, & src_archive_file) ?;
181
181
write_trap ( & trap_dir, path, & trap_writer, trap_compression)
182
182
} )
@@ -195,7 +195,7 @@ fn write_trap(
195
195
trap_compression : trap:: Compression ,
196
196
) -> std:: io:: Result < ( ) > {
197
197
let trap_file = path_for ( trap_dir, & path, trap_compression. extension ( ) ) ;
198
- std:: fs:: create_dir_all ( & trap_file. parent ( ) . unwrap ( ) ) ?;
198
+ std:: fs:: create_dir_all ( trap_file. parent ( ) . unwrap ( ) ) ?;
199
199
trap_writer. write_to_file ( & trap_file, trap_compression)
200
200
}
201
201
You can’t perform that action at this time.
0 commit comments