[util/hb-shape/hb-subset] Don't terminate on first error in batch mode

There's no reason to quit processing.  The failure is already
communicated via stdout in both cases.
This commit is contained in:
Behdad Esfahbod 2021-08-01 22:12:08 -06:00
parent a363ce573c
commit 47d47e8c43
2 changed files with 0 additions and 7 deletions

View File

@ -186,11 +186,7 @@ main (int argc, char **argv)
driver_t<EOF> driver;
ret |= driver.main (argc, args);
fflush (stdout);
if (ret)
break;
}
return ret;
}

View File

@ -160,9 +160,6 @@ main (int argc, char **argv)
fprintf (stdout, result == 0 ? "success\n" : "failure\n");
fflush (stdout);
ret |= result;
if (ret)
break;
}
return ret;
}