Skip to content

Commit cb27eb8

Browse files
Removed nonexistent commands info and config
1 parent 3aa0e37 commit cb27eb8

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

src/cli.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@ pub fn build_cli() -> App<'static, 'static> {
66
App::new("Test My Code client written in Rust")
77
.setting(AppSettings::ArgRequiredElseHelp)
88
.version(PKG_VERSION.unwrap())
9-
.about("Does awesome things")
10-
.subcommand(
11-
SubCommand::with_name("config")
12-
.about("Set/unset TMC-CLI properties and change settings"),
13-
)
9+
.about("Client for downloading, testing and submitting exercises through the Test My Code system")
1410
.subcommand(SubCommand::with_name("courses").about("List the available courses"))
1511
.subcommand(
1612
SubCommand::with_name("download")
@@ -34,7 +30,6 @@ pub fn build_cli() -> App<'static, 'static> {
3430
.about("List the exercises for a specific course")
3531
.arg(Arg::with_name("course").value_name("course").required(true)),
3632
)
37-
.subcommand(SubCommand::with_name("info").about("Show info about the current directory"))
3833
.subcommand(
3934
SubCommand::with_name("login")
4035
.about("Login to TMC server")
@@ -110,4 +105,5 @@ pub fn build_cli() -> App<'static, 'static> {
110105
.long("testmode")
111106
.help("Only for internal testing, disables server connection"),
112107
)
108+
113109
}

0 commit comments

Comments
 (0)