If one runs make parse, for each parse step, utils.process creates a file immediately; if it fails it just exits. Then if one runs make parse again, it won't re-run that step (since the file exists).
Should add some error processing to make parse; if there is any exception, catch it, delete the file, and then re-raise.
If one runs
make parse
, for each parse step,utils.process
creates a file immediately; if it fails it just exits. Then if one runsmake parse
again, it won't re-run that step (since the file exists).Should add some error processing to
make parse
; if there is any exception, catch it, delete the file, and then re-raise.