Skip to content

Commit

Permalink
reorder command line
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume W. Bres <[email protected]>
  • Loading branch information
gwbres committed Aug 31, 2023
1 parent 3c4d14d commit 5a19d65
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions rinex-cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@ impl Cli {
.action(ArgAction::Append)
.required(true))
.next_help_heading("General")
.arg(Arg::new("workspace")
.short('w')
.long("workspace")
.value_name("[FOLDER]")
.help("Customize workspace location (folder does not have to exist).
The default workspace is rinex-cli/workspace"))
.arg(Arg::new("quiet")
.short('q')
.long("quiet")
Expand All @@ -44,6 +38,12 @@ The default workspace is rinex-cli/workspace"))
.long("pretty")
.action(ArgAction::SetTrue)
.help("Make terminal output more readable."))
.arg(Arg::new("workspace")
.short('w')
.long("workspace")
.value_name("[FOLDER]")
.help("Customize workspace location (folder does not have to exist).
The default workspace is rinex-cli/workspace"))
.next_help_heading("Data identification")
.arg(Arg::new("epochs")
.long("epochs")
Expand Down

0 comments on commit 5a19d65

Please sign in to comment.