Skip to content
Snippets Groups Projects
Commit 837f1e83 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Merge branch 'ignore-errors' into 'master'

add --nonstop option to not exit on error

See merge request !332
parents e7483f2e eee3b462
No related branches found
No related tags found
1 merge request!332add --nonstop option to not exit on error
...@@ -10,6 +10,9 @@ do ...@@ -10,6 +10,9 @@ do
if [ "$arg" == "--debug" ] if [ "$arg" == "--debug" ]
then then
DEBUG=--debug DEBUG=--debug
elif [ "$arg" == "--nonstop" ]
then
set +e
else else
recipes+=" $arg" recipes+=" $arg"
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment