From 464641ca0e2416657c2223a7e948efda636f2c9e Mon Sep 17 00:00:00 2001 From: MelanX Date: Thu, 11 Jul 2024 19:07:02 +0200 Subject: [PATCH] [meta] fix changelog generation --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 8373783..05db038 100644 --- a/build.gradle +++ b/build.gradle @@ -236,7 +236,7 @@ String changelog(Project project) { if (gitHash != null && gitPrevHash != null) { exec { - commandLine 'bash', '-c', "git log ${logFmt} ${gitPrevHash}...${gitHash} | grep -v '^\\[meta\\]'" + commandLine 'bash', '-c', "git log ${logFmt} ${gitPrevHash}...${gitHash} | grep -v '^- \\[meta\\]'" standardOutput = stdout } } else {