From b0123b3f833f5e06de814474927a6ab43afbac9f Mon Sep 17 00:00:00 2001 From: Luke Street Date: Sat, 28 Sep 2024 10:55:09 -0600 Subject: [PATCH] Improve build log message when command doesn't exist Before, it didn't include the actual command that was attempted to run. --- objdiff-gui/src/jobs/objdiff.rs | 34 ++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/objdiff-gui/src/jobs/objdiff.rs b/objdiff-gui/src/jobs/objdiff.rs index 4535002..23649ae 100644 --- a/objdiff-gui/src/jobs/objdiff.rs +++ b/objdiff-gui/src/jobs/objdiff.rs @@ -1,7 +1,6 @@ use std::{ path::{Path, PathBuf}, process::Command, - str::from_utf8, sync::mpsc::Receiver, }; @@ -91,13 +90,6 @@ pub(crate) fn run_make(config: &BuildConfig, arg: &Path) -> BuildStatus { ..Default::default() }; }; - match run_make_cmd(config, cwd, arg) { - Ok(status) => status, - Err(e) => BuildStatus { success: false, stderr: e.to_string(), ..Default::default() }, - } -} - -fn run_make_cmd(config: &BuildConfig, cwd: &Path, arg: &Path) -> Result { let make = config.custom_make.as_deref().unwrap_or("make"); let make_args = config.custom_args.as_deref().unwrap_or(&[]); #[cfg(not(windows))] @@ -144,15 +136,23 @@ fn run_make_cmd(config: &BuildConfig, cwd: &Path, arg: &Path) -> Result output, + Err(e) => { + return BuildStatus { + success: false, + cmdline, + stdout: Default::default(), + stderr: e.to_string(), + }; + } + }; + // Try from_utf8 first to avoid copying the buffer if it's valid, then fall back to from_utf8_lossy + let stdout = String::from_utf8(output.stdout) + .unwrap_or_else(|e| String::from_utf8_lossy(e.as_bytes()).into_owned()); + let stderr = String::from_utf8(output.stderr) + .unwrap_or_else(|e| String::from_utf8_lossy(e.as_bytes()).into_owned()); + BuildStatus { success: output.status.success(), cmdline, stdout, stderr } } fn run_build(