We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd57f24 commit de2ae91Copy full SHA for de2ae91
1 file changed
bbootimg/src/main/kotlin/rom/sparse/SparseImage.kt
@@ -231,7 +231,7 @@ data class SparseImage(var info: SparseInfo = SparseInfo()) {
231
if (EnvironmentVerifier().has7z) {
232
val stem = File(fileName).nameWithoutExtension
233
val outFilePath = Helper.joinPath(workDir, stem)
234
- val outStr = "7z x $fileName -y -o$outFilePath".check_output()
+ val outStr = "7z -snld x $fileName -y -o$outFilePath".check_output()
235
File(workDir, "$stem.log").writeText(outStr)
236
} else {
237
log.warn("Please install 7z for ext4 extraction")
0 commit comments