change argument order

main
Mathias Rothenhaeusler 2024-08-15 15:11:43 +02:00
parent 009079742a
commit 758dbfa942
1 changed files with 4 additions and 2 deletions

View File

@ -7,10 +7,12 @@ use clap::Parser;
about = "Start RCC local test environment."
)]
pub struct Arguments {
#[arg(help = "Possible values are 'up' and 'down'")]
pub action: String,
#[arg(help = "Which project folder to use, defined in your env file. E.g. xxx_DIR.")]
pub project: String,
#[arg(help = "Possible values are 'up' and 'down'")]
pub action: String,
#[arg(
short = 'l',
long = "legacy",