From a86ea2f4ce96370d3c66a69937828d6fc89e5203 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Wa=C5=9Bko?= Date: Tue, 1 Oct 2024 13:09:49 +0200 Subject: [PATCH] fix a typo... --- build/ci_utils/src/program/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/ci_utils/src/program/command.rs b/build/ci_utils/src/program/command.rs index dd0e2193bc33e..8af2c97fe6e09 100644 --- a/build/ci_utils/src/program/command.rs +++ b/build/ci_utils/src/program/command.rs @@ -497,7 +497,7 @@ pub fn spawn_log_processor( fn extract_github_command(line: &str) -> Option { // We remove a possible [info] prefix that is added by sbt. let trimmed = line.strip_prefix("[info] ").unwrap_or(line); - if let Some(remaining) = line.strip_prefix("::") { + if let Some(remaining) = trimmed.strip_prefix("::") { if remaining.starts_with("error") || remaining.starts_with("group") || remaining.starts_with("endgroup")