From caf2570bb2c1a109610aecc0e33bfe6a2dbf80c3 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sat, 12 Nov 2016 14:04:46 -0800 Subject: [PATCH] Don't allow args with early exit options (#96) Fixes #85 --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index c7ca2f0..d9f230d 100644 --- a/src/app.rs +++ b/src/app.rs @@ -127,7 +127,7 @@ pub fn app() { .multiple(true) .help("The recipe(s) to run, defaults to the first recipe in the justfile")) .group(ArgGroup::with_name("early-exit") - .args(&["dump", "edit", "list", "show", "summary"])) + .args(&["dump", "edit", "list", "show", "summary", "arguments", "evaluate"])) .get_matches(); let use_color_argument = matches.value_of("color").expect("--color had no value");