add --nonstop option to not exit on error

This commit is contained in:
Ron Williams 2023-12-30 21:48:32 -08:00
parent 3b1cc7326a
commit eee3b462c5

View File

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