You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the main func will use exit code 1 if any error occurs when calling Run(). It is possible however that the function call returns an error along with a 127 exit code. It might therefore be prudent to always use the returned exit code, rather than call os.Exit(1) in the case of an error.
The text was updated successfully, but these errors were encountered:
Currently the main func will use exit code 1 if any error occurs when calling Run(). It is possible however that the function call returns an error along with a 127 exit code. It might therefore be prudent to always use the returned exit code, rather than call
os.Exit(1)
in the case of an error.The text was updated successfully, but these errors were encountered: