From 1d6f8fd7de1700acfac5634672407615f47fdc5e Mon Sep 17 00:00:00 2001 From: Kevin K Date: Tue, 1 Nov 2016 13:43:51 -0400 Subject: [PATCH] chore(Completion Error): changes error message to reflect not only BASH is supported --- src/app/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/parser.rs b/src/app/parser.rs index 8a35d3be2ea..b0b987c13a1 100644 --- a/src/app/parser.rs +++ b/src/app/parser.rs @@ -125,7 +125,7 @@ impl<'a, 'b> Parser<'a, 'b> }; let mut file = match File::create(out_dir.join(file_name)) { - Err(why) => panic!("couldn't create bash completion file: {}", + Err(why) => panic!("couldn't create completion file: {}", why.description()), Ok(file) => file, };