From 4f8ed2eba843dbf3a17243d75414a96a9b330942 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 30 Sep 2019 00:53:30 +0200 Subject: idevicebackup2: Remove RestoreApplications.plist if restore failed --- tools/idevicebackup2.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/idevicebackup2.c b/tools/idevicebackup2.c index 10fad81..c2f04c2 100644 --- a/tools/idevicebackup2.c +++ b/tools/idevicebackup2.c @@ -2504,7 +2504,13 @@ files_out: PRINT_VERBOSE(1, "The device should reboot now.\n"); PRINT_VERBOSE(1, "Restore Successful.\n"); } else { - PRINT_VERBOSE(1, "Restore Failed (Error Code %d).\n", -result_code); + afc_remove_path(afc, "/iTunesRestore/RestoreApplications.plist"); + afc_remove_path(afc, "/iTunesRestore"); + if (quit_flag) { + PRINT_VERBOSE(1, "Restore Aborted.\n"); + } else { + PRINT_VERBOSE(1, "Restore Failed (Error Code %d).\n", -result_code); + } } break; case CMD_INFO: -- cgit v1.1-32-gdbae