Skip to content

Commit

Permalink
fix(cli): unify config value name in arguments (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
steebchen authored Nov 11, 2024
1 parent 625f8d7 commit dcef8c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cli/src/command/deployments/services/katana.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ pub struct KatanaCreateArgs {

#[arg(long)]
#[arg(help = "A config file ")]
#[arg(value_name = "config-file")]
#[arg(value_name = "config")]
pub config_file: Option<String>,
}

Expand Down Expand Up @@ -103,7 +103,7 @@ pub struct KatanaUpdateArgs {

#[arg(long)]
#[arg(help = "A config file ")]
#[arg(value_name = "config-file")]
#[arg(value_name = "config")]
pub config_file: Option<String>,
}

Expand Down
4 changes: 2 additions & 2 deletions cli/src/command/deployments/services/torii.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub struct ToriiCreateArgs {

#[arg(long)]
#[arg(help = "A config file ")]
#[arg(value_name = "config-file")]
#[arg(value_name = "config")]
pub config_file: Option<String>,

#[arg(short, long)]
Expand Down Expand Up @@ -60,6 +60,6 @@ pub struct ToriiUpdateArgs {

#[arg(long)]
#[arg(help = "A config file ")]
#[arg(value_name = "config-file")]
#[arg(value_name = "config")]
pub config_file: Option<String>,
}

0 comments on commit dcef8c1

Please sign in to comment.