load paths take at most one per arg

This commit is contained in:
Connor Skees 2020-07-24 23:34:25 -04:00
parent bafafcf0b4
commit 68e5f40f7d

View File

@ -54,6 +54,7 @@ fn main() -> std::io::Result<()> {
.help("A path to use when resolving imports. May be passed multiple times.")
.multiple(true)
.takes_value(true)
.number_of_values(1)
)
.arg(
Arg::with_name("STYLE")