Fix finding recovery image on direct install

Fix #5972, fix #5673
This commit is contained in:
残页
2022-06-17 17:53:18 +08:00
committed by GitHub
parent 741b679306
commit cd96454886

View File

@@ -58,7 +58,7 @@ abstract class MagiskInstallImpl protected constructor(
private val localFS get() = FileSystemManager.getLocal()
private fun findImage(): Boolean {
val bootPath = "find_boot_image; echo \"\$BOOTIMAGE\"".fsh()
val bootPath = "RECOVERYMODE=${Config.recovery} find_boot_image; echo \"\$BOOTIMAGE\"".fsh()
if (bootPath.isEmpty()) {
console.add("! Unable to detect target image")
return false