diff --git a/articles/bisect.html b/articles/bisect.html index a57be13d5..a22499454 100644 --- a/articles/bisect.html +++ b/articles/bisect.html @@ -119,6 +119,9 @@ Just to tell you once again

Is it automated?

Yep Git Bisect will gleefully seek the Breaking Commit on its own… Assuming that we provide a Script to Assess the Goodness / Badness of a NuttX Commit: my-test-script.sh

## This script will be called by Git Bisect...
+## In Case of Error: Return the error to Git Bisect
+set -e
+
 ## Get the NuttX Hash (Commit ID)
 nuttx_hash=$(git rev-parse HEAD)