diff --git a/AltStore/Operations/InstallAppOperation.swift b/AltStore/Operations/InstallAppOperation.swift index 3933351e..59e452c8 100644 --- a/AltStore/Operations/InstallAppOperation.swift +++ b/AltStore/Operations/InstallAppOperation.swift @@ -240,8 +240,10 @@ final class InstallAppOperation: ResultOperation do { - try FileManager.default.removeItem(at: fileURL) - print("Removed refreshed IPA") + if(FileManager.default.fileExists(atPath: fileURL.path)){ + try FileManager.default.removeItem(at: fileURL) + print("Removed refreshed IPA") + } } catch {