##// END OF EJS Templates
copyright: update to 2021...
copyright: update to 2021 Differential Revision: https://phab.mercurial-scm.org/D9885

File last commit:

r45570:afecc7f7 default
r47142:ed43b6fa stable
Show More
exitcode.rs
10 lines | 211 B | application/rls-services+xml | RustLexer
pub type ExitCode = i32;
/// Successful exit
pub const OK: ExitCode = 0;
/// Generic abort
pub const ABORT: ExitCode = 255;
/// Command not implemented by rhg
pub const UNIMPLEMENTED_COMMAND: ExitCode = 252;