summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md2
-rw-r--r--mullvad-cli/src/cmds/relay.rs7
2 files changed, 3 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a91ed2c011..6d3cd05eef 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -29,6 +29,8 @@ Line wrap the file at 100 chars. Th
### Changed
- The "Buy more credit" button is changed to open a dedicated account login page instead of one
having a create account form first.
+- The CLI command to list relays is now shorter, `mullvad relay list` instead of
+ `mullvad relay list locations`.
## [2018.2] - 2018-08-13
diff --git a/mullvad-cli/src/cmds/relay.rs b/mullvad-cli/src/cmds/relay.rs
index 2bdf84f40a..5be05786cc 100644
--- a/mullvad-cli/src/cmds/relay.rs
+++ b/mullvad-cli/src/cmds/relay.rs
@@ -82,12 +82,7 @@ impl Command for Relay {
),
).subcommand(clap::SubCommand::with_name("get"))
.subcommand(
- clap::SubCommand::with_name("list")
- .setting(clap::AppSettings::SubcommandRequired)
- .subcommand(
- clap::SubCommand::with_name("locations")
- .about("List available countries and cities"),
- ),
+ clap::SubCommand::with_name("list").about("List available countries and cities"),
)
}