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
exit_code.rs provides various exit codes such as SUCCESS, FAILURE, USAGE, OSERR, CONFIG, etc. specified in /usr/include/sysexits.h. We should replace exit_code::SUCCESS and exit_code::FAILURE with std::process::ExitCode::SUCCESS and std::process::ExitCode::FAILURE, respectively, when the API stabilizes.
exit_code.rs
provides various exit codes such asSUCCESS
,FAILURE
,USAGE
,OSERR
,CONFIG
, etc. specified in/usr/include/sysexits.h
. We should replaceexit_code::SUCCESS
andexit_code::FAILURE
withstd::process::ExitCode::SUCCESS
andstd::process::ExitCode::FAILURE
, respectively, when the API stabilizes.API docs: https://doc.rust-lang.org/std/process/struct.ExitCode.html
PR: rust-lang/rust#48711
Introduced by #13.
The text was updated successfully, but these errors were encountered: