mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Fix snapshot id resolution bug.
This commit is contained in:
parent
0e116c04f9
commit
f7932840c2
1 changed files with 1 additions and 1 deletions
|
@ -19,6 +19,6 @@ open public class UnversionedDep(open val groupId: String, open val artifactId:
|
|||
public fun toDirectory(v: String, fileSystem: Boolean = true): String {
|
||||
val sep = if (fileSystem) File.separator else "/"
|
||||
val l = listOf(groupId.replace(".", sep), artifactId, v)
|
||||
return Strings.Companion.join(sep, l)
|
||||
return Strings.Companion.join(sep, l) + "/"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue