Date: Fri, 2 Feb 2024 06:27:42 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: ac9abe93e832 - main - checkstyle9.pl: Another correction to github workflow Message-ID: <202402020627.4126Rgw8078580@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=ac9abe93e83293cb19827a1e6cd898ff40410f47 commit ac9abe93e83293cb19827a1e6cd898ff40410f47 Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2024-02-02 06:26:38 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2024-02-02 06:27:37 +0000 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 65f13bc1e7f2..dd6eb624e0b4 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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202402020627.4126Rgw8078580>