mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-29 18:41:27 +00:00
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:
@@ -171,7 +171,7 @@ fail ()
|
||||
if test "${keepgoing}" != ""
|
||||
then
|
||||
#exit 1
|
||||
continue
|
||||
return 1
|
||||
else
|
||||
kill $$
|
||||
exit 1
|
||||
|
||||
Reference in New Issue
Block a user