Mark --outfile parameter as required

This commit is contained in:
Michael Vines 2018-09-16 10:42:28 -07:00 committed by Grimes
parent fd36954477
commit 7dfab867fe
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ fn main() -> Result<(), Box<error::Error>> {
.long("outfile")
.value_name("PATH")
.takes_value(true)
.required(true)
.help("path to generated file"),
).get_matches();