Skip to content

Commit 2af65bb

Browse files
committed
Fixed verbose flag check
1 parent 8afcd0e commit 2af65bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/console.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ pub fn get_command_line_settings() -> CommandLineSettings {
9393
}
9494
}
9595

96-
let verbose_flag = (&flags).contains(&"--verbose".to_string());
96+
let verbose_flag = (&flags).contains(&"verbose".to_string());
9797

9898
CommandLineSettings {
9999
args: args,

0 commit comments

Comments
 (0)