Make the hexpatcher more robust. Mainly for when dealing with the case where there are no patches availble

update
Hamish Coleman 8 years ago
parent 47ffb6d905
commit d218e0e1ba

@ -182,6 +182,11 @@ sub main() {
while ($ARGV[0]) {
my $patchfile = shift @ARGV;
if (!-e $patchfile) {
warn("Patchfile $patchfile not present, skipping\n");
next;
}
my $db = read_patchfile($patchfile);
if (!defined($db)) {

Loading…
Cancel
Save