##// END OF EJS Templates
makefile: add a install-chg option...
makefile: add a install-chg option This is done as a gratuitous improvement on the way to add makefile entry to build and install rhg. It seems saner to have equivalent entry for chg too. Differential Revision: https://phab.mercurial-scm.org/D10192

File last commit:

r47478:b1f2c2b3 default
r47485:a7204958 default
Show More
exitcode.rs
13 lines | 305 B | application/rls-services+xml | RustLexer
Antoine Cezar
rhg: add rhg crate...
r45503 pub type ExitCode = i32;
Antoine Cezar
rhg: add RootCommand using hg-core FindRoot operation to prepare `hg root`...
r45592 /// Successful exit
pub const OK: ExitCode = 0;
/// Generic abort
pub const ABORT: ExitCode = 255;
Simon Sapin
rhg: `cat` command: print error messages for missing files...
r47478 /// Generic something completed but did not succeed
pub const UNSUCCESSFUL: ExitCode = 1;
Simon Sapin
rhg: Simplify CommandError based on its use...
r47174 /// Command or feature not implemented by rhg
pub const UNIMPLEMENTED: ExitCode = 252;