From 5718af023b556a9ec39fde2a1bd06c2b6c631b47 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sun, 15 Nov 2020 22:49:01 +0100 Subject: [PATCH] use the OPT_VERBOSE Co-authored-by: Roy Ivy III --- src/uu/install/src/install.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/install/src/install.rs b/src/uu/install/src/install.rs index 6e089c430..8c7df6961 100644 --- a/src/uu/install/src/install.rs +++ b/src/uu/install/src/install.rs @@ -342,7 +342,7 @@ fn behavior(matches: &ArgMatches) -> Result { main_function, specified_mode, suffix: backup_suffix.to_string(), - verbose: matches.is_present("v"), + verbose: matches.is_present(OPT_VERBOSE), }) }