runner: pass -v instead of -verbose

This commit is contained in:
Graham Christensen 2018-05-24 11:07:24 -04:00
parent e2ee557029
commit 5b76fc45f8

View File

@ -104,7 +104,7 @@ fn main() {
child.stdout(Stdio::inherit());
child.stderr(Stdio::inherit());
if options.verbose {
child.arg("-verbose");
child.arg("-v");
}
child.args(&["run", "hyperkit"]);
child.args(&["-hyperkit", options.hyperkit.to_str().unwrap()]);