gdb/gdb_mbuild.sh: use return instead of continue to avoid shellcheck error

Fix:

    In gdb_mbuild.sh line 174:
                continue
                ^------^ SC2104 (error): In functions, use return instead of continue.

Change-Id: I5ce95b01359c5cfbb1612f2f48b80bfeea66c96c
This commit is contained in:
yaowenbin
2022-07-28 17:22:47 +08:00
committed by Simon Marchi
parent 2eb132bdfb
commit 8727caedd1

View File

@@ -171,7 +171,7 @@ fail ()
if test "${keepgoing}" != ""
then
#exit 1
continue
return 1
else
kill $$
exit 1