From 9573fa31d25b734eed84785aa2b89c9fc7ea9d74 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Mon, 29 May 2023 14:01:02 +0800 Subject: Fix #1337 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 045aacc37..18a3a4456 100755 --- a/build.gradle +++ b/build.gradle @@ -141,7 +141,7 @@ task releaseOnCf { } def time = df.format(new Date()) def changes = new StringBuilder() - changes << "## REI v$project.version for $project.supported_version\nUpdated at **$time**.\n![Click here for changelog](https://www.github.com/shedaniel/RoughlyEnoughItems/commits/$branch)" + changes << "## REI v$project.version for $project.supported_version\nUpdated at **$time**.\n[Click here for changelog](https://www.github.com/shedaniel/RoughlyEnoughItems/commits/$branch)" def proc = "git log --max-count=200 --pretty=format:%s".execute() proc.in.eachLine { line -> def processedLine = line.toString() -- cgit