chore(Completion Error): changes error message to reflect not only BASH is supported

This commit is contained in:
Kevin K 2016-11-01 13:43:51 -04:00
parent ccfc5ed6c3
commit 1d6f8fd7de
No known key found for this signature in database
GPG key ID: 17218E4B3692F01A

View file

@ -125,7 +125,7 @@ impl<'a, 'b> Parser<'a, 'b>
}; };
let mut file = match File::create(out_dir.join(file_name)) { 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()), why.description()),
Ok(file) => file, Ok(file) => file,
}; };