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
Right now, the exit code of a shell command can dictate what StatusLevel is returned from StatusCode. So, if you have a shell command that returns an exit code of 4, StatusCode() incorrectly returns StatusFatal [1]. Shouldn't StatusCode just report StatusWillChange if the command did execute but returned anything other than 0?
[1] This currently does not have any effect but it probably should. See #322
The text was updated successfully, but these errors were encountered:
Right now, the exit code of a shell command can dictate what
StatusLevel
is returned fromStatusCode
. So, if you have a shell command that returns an exit code of 4,StatusCode()
incorrectly returnsStatusFatal
[1]. Shouldn'tStatusCode
just reportStatusWillChange
if the command did execute but returned anything other than 0?[1] This currently does not have any effect but it probably should. See #322
The text was updated successfully, but these errors were encountered: