fix screen clearing on windows

This commit is contained in:
Jim McGrath 2017-12-06 11:40:04 -06:00
parent 1456fa2ee9
commit 9b4e74ed30
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ pub struct Args {
#[cfg(target_family = "windows")]
pub fn clear_screen() {
let _ = Command::new("cls").status();
let _ = Command::new("cmd").arg("/c").arg("cls").status();
}
#[cfg(target_family = "unix")]