shitbox/corebox/commands/false/mod.rs
Nathan Fisher 06b88d2c24 Refactoring:
- Split into workspace crates
- Split into two binaries `corebox` and `hashbox`
- Add `mount` crate to workspace to prepare for third binary `utilbox`
2023-02-05 23:50:59 -05:00

24 lines
566 B
Rust

use super::Cmd;
use clap::Command;
use std::{error::Error, process};
#[derive(Debug, Default)]
pub struct False;
impl Cmd for False {
fn cli(&self) -> clap::Command {
Command::new("false")
.about("Does nothing unsuccessfully")
.long_about("Exit with a status code indicating failure")
.author("Nathan Fisher")
}
fn run(&self, _matches: &clap::ArgMatches) -> Result<(), Box<dyn Error>> {
process::exit(1);
}
fn path(&self) -> Option<shitbox::Path> {
Some(shitbox::Path::Bin)
}
}