File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
buildSrc/src/main/kotlin/software/aws/toolkits/gradle/changelog Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -38,12 +38,11 @@ allprojects {
38
38
}
39
39
40
40
val generateChangeLog = tasks.register<GenerateGithubChangeLog >(" generateChangeLog" ) {
41
+ mustRunAfter(tasks.createRelease)
41
42
changeLogFile.set(project.file(" CHANGELOG.md" ))
42
43
}
43
44
44
45
tasks.createRelease.configure {
45
- mustRunAfter(generateChangeLog)
46
-
47
46
releaseVersion.set(providers.gradleProperty(" toolkitVersion" ))
48
47
}
49
48
Original file line number Diff line number Diff line change 4
4
package software.aws.toolkits.gradle.changelog
5
5
6
6
abstract class ChangeLogWriter (protected val repoUrl : String? = null ) {
7
- private val issueUrl = repoUrl?.trimEnd(' /' )?.plus(" issues/" )
7
+ private val issueUrl = repoUrl?.trimEnd(' /' )?.plus(" / issues/" )
8
8
9
9
open fun writeEntry (entry : String ) {
10
10
append(expandIssueLinks(entry))
You can’t perform that action at this time.
0 commit comments