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
As standard, the tool is designed to run as a pipeline, where any failure stops the whole process
It would be nice to be able to toggle "audit mode" where every step is run, even if the previous one fails.
Also anything else useful to aggregate the output into something that is useful in the context of a code audit.
To make "audit mode" work, we would need to hunt down all the set +e and set -e calls and replace these with a function call that handles this, check for audit mode etc
The text was updated successfully, but these errors were encountered:
As standard, the tool is designed to run as a pipeline, where any failure stops the whole process
It would be nice to be able to toggle "audit mode" where every step is run, even if the previous one fails.
Also anything else useful to aggregate the output into something that is useful in the context of a code audit.
To make "audit mode" work, we would need to hunt down all the
set +e
andset -e
calls and replace these with a function call that handles this, check for audit mode etcThe text was updated successfully, but these errors were encountered: