Fixed compile errors

This commit is contained in:
geemili 2016-07-19 14:25:09 -05:00
parent 805ff69e2b
commit 7702cac8fc

View file

@ -159,7 +159,7 @@ fn main() {
s => {
let mut subcommand_args = find_args(s);
if is_debug && subcommand_args.filter(|x| x == "debug").count() == 0 {
if is_debug && subcommand_args.iter().find(|x| *x == "debug").is_none() {
subcommand_args.push(String::from("--debug"));
}
match Command::new(format!("imag-{}", s))