replace check command output by spawn
All checks were successful
Run Check Script / check (pull_request) Successful in 1m33s
All checks were successful
Run Check Script / check (pull_request) Successful in 1m33s
This commit is contained in:
parent
0861700231
commit
8419815c0a
@ -73,10 +73,9 @@ async fn main() {
|
||||
.try_exists()
|
||||
.expect("couldn't check if path exists");
|
||||
|
||||
let harmony_bin_path: PathBuf;
|
||||
match harmony_path {
|
||||
let harmony_bin_path: PathBuf = match harmony_path {
|
||||
true => {
|
||||
harmony_bin_path = compile_harmony(
|
||||
compile_harmony(
|
||||
cli_args.compile_method,
|
||||
cli_args.compile_platform,
|
||||
cli_args.harmony_path.clone(),
|
||||
@ -84,7 +83,7 @@ async fn main() {
|
||||
.await
|
||||
}
|
||||
false => todo!("implement autodetect code"),
|
||||
}
|
||||
};
|
||||
|
||||
match cli_args.command {
|
||||
Some(command) => match command {
|
||||
@ -103,8 +102,10 @@ async fn main() {
|
||||
};
|
||||
|
||||
let check_output = Command::new(check_script)
|
||||
.output()
|
||||
.expect("failed to run check script");
|
||||
.spawn()
|
||||
.expect("failed to run check script")
|
||||
.wait_with_output()
|
||||
.unwrap();
|
||||
info!(
|
||||
"check stdout: {}, check stderr: {}",
|
||||
String::from_utf8(check_output.stdout).expect("couldn't parse from utf8"),
|
||||
|
Loading…
Reference in New Issue
Block a user