add error NoGroupFilesInArguments
This commit is contained in:
@@ -45,7 +45,8 @@ fn get_group_cmd() -> Command {
|
||||
.short('e')
|
||||
.long("edit")
|
||||
.help("edit the new group files after creation")
|
||||
.action(clap::ArgAction::SetTrue),
|
||||
.action(clap::ArgAction::SetTrue)
|
||||
.num_args(0),
|
||||
)
|
||||
.arg(Arg::new("groups").num_args(1..))
|
||||
.visible_alias("n");
|
||||
|
||||
@@ -315,8 +315,9 @@ fn get_group_file_paths_matching_args<'a>(
|
||||
groups: &'a HashSet<Group>,
|
||||
) -> Result<Vec<&'a Path>> {
|
||||
let file_names: Vec<_> = arg_match
|
||||
.get_many::<String>("group")
|
||||
.context("getting groups from args")?
|
||||
.get_many::<String>("groups")
|
||||
.context("getting groups from args")
|
||||
.map_err(|_| crate::errors::Error::NoGroupFilesInArguments)?
|
||||
.collect();
|
||||
|
||||
let name_group_map: HashMap<&str, &Group> =
|
||||
|
||||
@@ -7,12 +7,15 @@ use std::fmt::Display;
|
||||
pub enum Error {
|
||||
/// Package search yields no results.
|
||||
NoPackagesFound,
|
||||
/// No group files were provided as arguments.
|
||||
NoGroupFilesInArguments,
|
||||
}
|
||||
|
||||
impl Display for Error {
|
||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||
match self {
|
||||
Self::NoPackagesFound => f.write_str("no packages matching query"),
|
||||
Self::NoGroupFilesInArguments => f.write_str("no group files in arguments"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user