diff --git a/patchport.py b/patchport.py index e7bb5ab..4c31b34 100644 --- a/patchport.py +++ b/patchport.py @@ -201,7 +201,7 @@ for patch in os.listdir(os.path.join(cutthecord_folder, "patches")): capture_output=True) # Check for issues - if "FAILED" in out.stdout: + if "FAILED" in out.stdout or "can't find file to patch" in out.stdout: print(f"FAILED: {patch} failed, please fix by hand.") failures.append(patch) out_path += "-failed"