Skip to content

Commit 80a5e3e

Browse files
committed
change readme and make dest argument optional
1 parent 68adc1f commit 80a5e3e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ fn main() {
4242
extract .dtb files from images
4343

4444
```
45-
$> cargo run extract-dtb
45+
cargo run extract-dtb
4646
```

extract-dtb/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ struct Args {
1313
/// Filename
1414
#[arg(required=true)]
1515
filename: String,
16+
#[arg(required=false)]
1617
dest: String,
1718
}
1819

0 commit comments

Comments
 (0)