From 68e5f40f7d55ef8eb5cbbb0396a218376f0767f9 Mon Sep 17 00:00:00 2001 From: Connor Skees Date: Fri, 24 Jul 2020 23:34:25 -0400 Subject: [PATCH] load paths take at most one per arg --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index ce5249a..0054d58 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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")