Skip to content

Commit

Permalink
[slack-notifier] path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Ilmov committed Jan 26, 2024
1 parent e76912b commit 629c1bb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ allprojects {
mavenLocal()
findProperty("TC_LOCAL_REPO")?.toString()?.let {
maven {
url = Paths.get(it).toUri()
val path = if (Paths.get(it).isAbsolute()) {
Paths.get(it)
} else {
getRootDir().toPath().resolve(it)
}
url = path.toUri()
}
}
maven(url = "https://cache-redirector.jetbrains.com/maven-central")
Expand Down

0 comments on commit 629c1bb

Please sign in to comment.