From b803159387946c4ffa4fa4a0f56d4db80326f10b Mon Sep 17 00:00:00 2001 From: Ola Nilsson Date: Thu, 21 Mar 2024 20:57:43 +0100 Subject: [PATCH] fixup! Avoid printing double lines in GitHub Actions --- buttercup.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buttercup.el b/buttercup.el index c0b579c..398dd2d 100644 --- a/buttercup.el +++ b/buttercup.el @@ -1846,7 +1846,7 @@ EVENT and ARG are described in `buttercup-reporter'." (`spec-started (or buttercup-reporter-batch-quiet-statuses ;; Do not 'pre-print' in github actions unless color is disabled. See #181. - (and (not buttercup-color) (getenv "GITHUB_ACTION")) + (getenv "GITHUB_ACTION") (and buttercup-color (string-match-p "[\n\v\f]" (buttercup-spec-description arg))) (buttercup--print "%s" (buttercup--indented-description arg))))