We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 075e519 commit bdb41ceCopy full SHA for bdb41ce
src/command.rs
@@ -215,7 +215,8 @@ fn iso_extract_tree<T: ISO9660Reader>(
215
216
if should_extract {
217
if let Some(extract_to_prefix) = &iso_extract_info.extract_to_prefix {
218
- file_path = file_path.replace(extract_prefix, extract_to_prefix);
+ file_path =
219
+ file_path.replacen(extract_prefix, extract_to_prefix, 1);
220
}
221
222
} else if let Some(extract_to_prefix) = &iso_extract_info.extract_to_prefix {
0 commit comments