##// END OF EJS Templates
makefile: add a build-rhg option...
makefile: add a build-rhg option This gives an easy action to build the rhg-binary. This will be useful for the `install-rhg` action in the next changeset. Differential Revision: https://phab.mercurial-scm.org/D10193

File last commit:

r47478:b1f2c2b3 default
r47486:a20674f2 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;