Skip to content

Commit

Permalink
Drop the "agama info" command because it is not implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
imobachgs committed May 27, 2024
1 parent 4ab4f51 commit ba274d9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions rust/agama-cli/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ pub enum Commands {
#[command(subcommand)]
Config(ConfigCommands),

/// Display information about installation settings (e.g., possible values)
Info {
/// Configuration keys (e.g., software.products)
keys: Vec<String>,
},
/// Start probing
Probe,
// Start Installation
Install,
Expand Down
1 change: 0 additions & 1 deletion rust/agama-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ async fn run_command(cli: Cli) -> anyhow::Result<()> {
Commands::Questions(subcommand) => run_questions_cmd(subcommand).await,
Commands::Logs(subcommand) => run_logs_cmd(subcommand).await,
Commands::Auth(subcommand) => run_auth_cmd(subcommand).await,
_ => unimplemented!(),
}
}

Expand Down

0 comments on commit ba274d9

Please sign in to comment.