fix cfg proxy switch not being parsed correctly

This commit is contained in:
dusk 2025-11-23 10:48:07 +00:00
parent d8748b1efc
commit 40febd4288
No known key found for this signature in database
2 changed files with 23 additions and 27 deletions

View file

@ -180,7 +180,8 @@ pub fn cmds() -> impl Iterator<Item = Command> {
.into_iter()
.map(apply_list_opts);
group_new_cmd
system_groups_cmd
.chain(group_new_cmd)
.chain(group_info_cmd)
.chain(group_name_cmd)
.chain(group_display_name_cmd)
@ -196,5 +197,4 @@ pub fn cmds() -> impl Iterator<Item = Command> {
.chain(group_delete_cmd)
.chain(group_id_cmd)
.chain(group_list_members_cmd)
.chain(system_groups_cmd)
}