From c84a86dd2b5bf8b5960bb694d799e6d3d9ca9d1e Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Fri, 17 Nov 2017 23:23:24 -0800 Subject: [PATCH] Use uppercase names for arguments (#255) --- src/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.rs b/src/run.rs index 2b5cb89..7098aae 100644 --- a/src/run.rs +++ b/src/run.rs @@ -59,7 +59,7 @@ pub fn run() { .arg(Arg::with_name("DRY-RUN") .long("dry-run") .help("Prints what just would do without doing it") - .conflicts_with("quiet")) + .conflicts_with("QUIET")) .arg(Arg::with_name("DUMP") .long("dump") .help("Prints entire justfile"))