summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarkus Pettersson <markus.pettersson@mullvad.net>2023-08-07 10:25:44 +0200
committerDavid Lönnhager <david.l@mullvad.net>2023-08-21 17:02:25 +0200
commite0a64fd53906b9dcdeb0b5b17bc3885964f342f4 (patch)
tree2ca421cd954d09eb98c454834bad365b4f9a6a2c
parent1ebfa8013997b2ec1a159e6c60f7080e06418c62 (diff)
downloadmullvadvpn-e0a64fd53906b9dcdeb0b5b17bc3885964f342f4.tar.xz
mullvadvpn-e0a64fd53906b9dcdeb0b5b17bc3885964f342f4.zip
Rename cli command `mullvad custom-lists` to `mullvad custom-list`
The `custom-list` subcommand is now in singular form, rather than plural.
-rw-r--r--mullvad-cli/src/main.rs4
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 } => {