##// END OF EJS Templates
pyoxidizer: default to one-file binary on non-Windows platforms...
pyoxidizer: default to one-file binary on non-Windows platforms Windows has some extra constraints that require a multi-file install, but we expect folks to use an MSI or similar installer there so it's less of a big deal. Differential Revision: https://phab.mercurial-scm.org/D9289

File last commit:

r45570:afecc7f7 default
r46435:f14c33b2 default
Show More
exitcode.rs
10 lines | 211 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;
Antoine Cezar
rhg: add rhg crate...
r45503 /// Command not implemented by rhg
pub const UNIMPLEMENTED_COMMAND: ExitCode = 252;