Merge branch 'ignore-errors' into 'master'

add --nonstop option to not exit on error

See merge request redox-os/cookbook!332
This commit is contained in:
Jeremy Soller 2024-01-03 19:15:47 +00:00
commit 837f1e8344

View File

@ -10,6 +10,9 @@ do
if [ "$arg" == "--debug" ]
then
DEBUG=--debug
elif [ "$arg" == "--nonstop" ]
then
set +e
else
recipes+=" $arg"
fi