Skip to content

Commit

Permalink
Fix usage
Browse files Browse the repository at this point in the history
  • Loading branch information
hkctkuy committed Jun 10, 2024
1 parent a788f4d commit ef99f8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion casr/src/bin/casr-libfuzzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ fn main() -> Result<()> {
Arg::new("output")
.short('o')
.long("output")
.env("CASR_SEED_DIR")
.action(ArgAction::Set)
.value_parser(clap::value_parser!(PathBuf))
.required(true)
Expand All @@ -79,6 +78,7 @@ fn main() -> Result<()> {
Arg::new("seed")
.short('s')
.long("seed")
.env("CASR_SEED_DIR")
.action(ArgAction::Set)
.value_parser(clap::value_parser!(PathBuf))
.value_name("SEED_DIR")
Expand Down
4 changes: 2 additions & 2 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -591,9 +591,9 @@ Triage crashes found by libFuzzer based fuzzer
-i, --input <INPUT_DIR>
Directory containing crashes found by libFuzzer [default: .]
-o, --output <OUTPUT_DIR>
Output directory with triaged reports [env: CASR_SEED_DIR=]
Output directory with triaged reports
-s, --seed <SEED_DIR>
Seed directory with previously triaged reports
Seed directory with previously triaged reports [env: CASR_SEED_DIR=]
-f, --force-remove
Remove output project directory if it exists
--no-cluster
Expand Down

0 comments on commit ef99f8a

Please sign in to comment.