Skip to content

Commit

Permalink
fix a typo...
Browse files Browse the repository at this point in the history
  • Loading branch information
radeusgd committed Oct 1, 2024
1 parent 3841751 commit a86ea2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/ci_utils/src/program/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ pub fn spawn_log_processor(
fn extract_github_command(line: &str) -> Option<String> {
// 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")
Expand Down

0 comments on commit a86ea2f

Please sign in to comment.