diff options
Diffstat (limited to 'mullvad-cli/src')
| -rw-r--r-- | mullvad-cli/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mullvad-cli/src/main.rs b/mullvad-cli/src/main.rs index e383c0025d..566b91e3f0 100644 --- a/mullvad-cli/src/main.rs +++ b/mullvad-cli/src/main.rs @@ -115,7 +115,7 @@ enum Cli { /// Manage custom lists #[clap(subcommand)] - CustomLists(custom_lists::CustomList), + CustomList(custom_lists::CustomList), } #[tokio::main] @@ -141,7 +141,7 @@ async fn main() -> Result<()> { #[cfg(any(target_os = "windows", target_os = "linux"))] Cli::SplitTunnel(cmd) => cmd.handle().await, Cli::Status { cmd, args } => status::handle(cmd, args).await, - Cli::CustomLists(cmd) => cmd.handle().await, + Cli::CustomList(cmd) => cmd.handle().await, #[cfg(all(unix, not(target_os = "android")))] Cli::ShellCompletions { shell, dir } => { |
