fix windows build

Why isn't CI running on each push? It seems to only be running on tagged
commits.
This commit is contained in:
Andrew Gallant
2016-09-17 12:54:44 -04:00
parent 403ba5fdc8
commit bfbbfbf979
3 changed files with 12 additions and 7 deletions

View File

@@ -9,7 +9,9 @@ use grep::{Grep, GrepBuilder};
use log;
use num_cpus;
use regex;
use term::{self, Terminal};
use term::Terminal;
#[cfg(not(windows))]
use term;
#[cfg(windows)]
use term::WinConsole;
use walkdir::WalkDir;