From ac9abe93e83293cb19827a1e6cd898ff40410f47 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Thu, 1 Feb 2024 23:26:38 -0700 Subject: [PATCH] checkstyle9.pl: Another correction to github workflow Remove extra space... Sponsored by: Netflix --- tools/build/checkstyle9.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/build/checkstyle9.pl b/tools/build/checkstyle9.pl index 65f13bc1e7f..dd6eb624e0b 100755 --- a/tools/build/checkstyle9.pl +++ b/tools/build/checkstyle9.pl @@ -1182,7 +1182,8 @@ sub report { $output .= MAGENTA if $do_color && $level eq 'WARNING'; $output .= $level . ':' if !$github; $output .= RESET if $do_color; - $output .= ' ' . $msg . "\n"; + $output .= ' ' if (!$github); + $output .= $msg . "\n"; $output = (split('\n', $output))[0] . "\n" if ($terse); -- 2.45.0