From 16d8850ca7b4b76bd8764c8ce4ae34648eabfa30 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Thu, 8 Oct 2020 17:53:24 +0600 Subject: [PATCH] fix of github_release files --- github_release.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github_release.gradle b/github_release.gradle index 17f752a..cfefe3d 100644 --- a/github_release.gradle +++ b/github_release.gradle @@ -3,7 +3,7 @@ private String getCurrentVersionChangelog() { exec { standardOutput = changelogDataOS commandLine 'chmod', "+x", './changelog_parser.sh' - commandLine './changelog_parser.sh', "$library_version", 'CHANGELOG.md' + commandLine './changelog_parser.sh', "${project.version}", 'CHANGELOG.md' } return changelogDataOS.toString().trim()