summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recovery.cpp2
-rw-r--r--twrp.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/recovery.cpp b/recovery.cpp
index de9939357..64091305a 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -1161,7 +1161,7 @@ main(int argc, char **argv) {
// Check for su to see if the device is rooted or not
if (PartitionManager.Mount_By_Path("/system", false)) {
// Disable flashing of stock recovery
- if (TWFunc::Path_Exists("/system/recovery-from-boot.p")) {
+ if (TWFunc::Path_Exists("/system/recovery-from-boot.p") && TWFunc::Path_Exists("/system/etc/install-recovery.sh")) {
rename("/system/recovery-from-boot.p", "/system/recovery-from-boot.bak");
ui_print("Renamed stock recovery file in /system to prevent\nthe stock ROM from replacing TWRP.\n");
}
diff --git a/twrp.cpp b/twrp.cpp
index 3e0fc9b9a..c3baa2e2d 100644
--- a/twrp.cpp
+++ b/twrp.cpp
@@ -287,7 +287,7 @@ int main(int argc, char **argv) {
// Check for su to see if the device is rooted or not
if (PartitionManager.Mount_By_Path("/system", false)) {
// Disable flashing of stock recovery
- if (TWFunc::Path_Exists("/system/recovery-from-boot.p")) {
+ if (TWFunc::Path_Exists("/system/recovery-from-boot.p") && TWFunc::Path_Exists("/system/etc/install-recovery.sh")) {
rename("/system/recovery-from-boot.p", "/system/recovery-from-boot.bak");
gui_print("Renamed stock recovery file in /system to prevent\nthe stock ROM from replacing TWRP.\n");
}