Skip to content

Commit 1b60c95

Browse files
committed
Fix git urls
1 parent e3038f6 commit 1b60c95

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

consts.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ val consts: Properties by extra(object : Properties() {
1212

1313
val gitHubUser by "Takhion"
1414
val gitHubRepo by "kotlin-metadata__kotlin-compiler-lite"
15+
val gitHubRepoDomain by "github.com/$gitHubUser/$gitHubRepo"
1516

1617
val gitTag by "v$codeVersion"
17-
val gitRepo by "github.com/$gitHubUser/$gitHubRepo.git"
18+
val gitRepo by "$gitHubRepoDomain.git"
1819

19-
val mainRepoUrl by "https://$gitRepo"
20+
val mainRepoUrl by "https://$gitHubRepoDomain"
2021
val taggedRepoUrl by "$mainRepoUrl/tree/$gitTag"
2122

2223
val libShortName by "kotlin-compiler-lite"

0 commit comments

Comments
 (0)