Update boot-mvebu.cmd after review

Follow conventional `if-then-else-fi` constructions by not having `else` followed by semicolon. Hush is accepting, but other commonly used shells do not accept this.
This commit is contained in:
djurny 2025-06-04 17:09:20 -07:00 committed by Igor
parent abe8102669
commit 13536bf932

View File

@ -58,7 +58,7 @@ setenv func_critical_error '
sleep 10 ;
if test "${exit_on_critical_errors}" = "on" ; then
false ;
else ;
else
true ;
fi'