You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
malachite/src/internal/exit_codes.rs

10 lines
191 B
Rust

pub enum AppExitCode {
#[cfg(target_os = "linux")]
RunAsRoot = 1,
PkgsNotFound = 2,
DirNotEmpty = 3,
ConfigParseError = 4,
RepoParseError = 5,
RepoNotClean = 6,
}