You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CIVET scripts all end with an explicit "exit 0".
This should be removed.
Also, the last command should return the actual status code of the CIVET program itself, no matter what other code is performed after it finished (e.g. the code that cats the output of failed stages). This can be done with:
CIVET_Processing_Pipeline blah blah
civet_status=$?
other stuff here
bash -c "exit $civet_status"
The text was updated successfully, but these errors were encountered:
The CIVET scripts all end with an explicit "exit 0".
This should be removed.
Also, the last command should return the actual status code of the CIVET program itself, no matter what other code is performed after it finished (e.g. the code that cats the output of failed stages). This can be done with:
The text was updated successfully, but these errors were encountered: