We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96275fa commit a5549b0Copy full SHA for a5549b0
extract_utils/extract.py
@@ -462,13 +462,13 @@ def extract_partition(partition: str, dump_dir: str):
462
if sparse_data_path:
463
print_file_path(sparse_data_path, 'sparse data')
464
extract_sparse_data_img(sparse_data_path, dump_dir)
465
- remove_file_paths(sparse_data_path)
+ remove_file_path(sparse_data_path)
466
467
erofs_path = find_erofs_path(partition, dump_dir)
468
if erofs_path:
469
print_file_path(erofs_path, 'EROFS')
470
extract_erofs(erofs_path, dump_dir)
471
- remove_file_paths(erofs_path)
+ remove_file_path(erofs_path)
472
473
ext4_path = find_ext4_path(partition, dump_dir)
474
if ext4_path:
0 commit comments