From 758dbfa9421f8a844173f28924e9c2aac9c7fb19 Mon Sep 17 00:00:00 2001 From: Mathias Rothenhaeusler Date: Thu, 15 Aug 2024 15:11:43 +0200 Subject: [PATCH] change argument order --- src/arguments.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/arguments.rs b/src/arguments.rs index 5c489f4..a17bfb6 100644 --- a/src/arguments.rs +++ b/src/arguments.rs @@ -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",