Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ fn build_command() -> Command {
)
.arg(
Arg::new("output-dir")
.short('O')
.long("output-dir")
.help("Directory for output files (default: same as input file)")
.value_name("DIR"),
Expand All @@ -316,7 +317,9 @@ fn build_command() -> Command {
)
.arg(
Arg::new("force-export")
.short('F')
.long("force-export")
.alias("force")
.help("Force export of all logs, bypassing smart filtering")
.long_help(
"Force export of all logs, bypassing smart filtering.\n\n\
Expand Down
Loading