[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:
parent
a363ce573c
commit
47d47e8c43
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue