From f254a27071ac578cd127e3e7c43ee131574c990e Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 31 Oct 2020 21:30:29 +0100 Subject: [PATCH] tools: do not unnecessarily prefix module path Signed-off-by: Thomas Lamprecht --- src/tools.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools.rs b/src/tools.rs index 5535b8cb..5ef3a241 100644 --- a/src/tools.rs +++ b/src/tools.rs @@ -462,7 +462,7 @@ pub fn run_command( let output = command.output() .map_err(|err| format_err!("failed to execute {:?} - {}", command, err))?; - let output = crate::tools::command_output_as_string(output, exit_code_check) + let output = command_output_as_string(output, exit_code_check) .map_err(|err| format_err!("command {:?} failed - {}", command, err))?; Ok(output)