Browse Source

Fix a bug with URL generation

master
Sarah Gerweck 7 years ago
parent
commit
184f085471
No known key found for this signature in database GPG Key ID: AFCB37207DB3F226
  1. 2
      project/SettingTemplate.scala

2
project/SettingTemplate.scala

@ -43,7 +43,7 @@ object SettingTemplate {
val githubOrgPageFallback: Boolean = true
lazy val githubPage = url(s"https://github.com/${githubOrganization}/${githubProject}")
override def sourceLocation(branch: String) = Some(url(s"${githubPage.toExternalForm}/blob/branch"))
override def sourceLocation(branch: String) = Some(url(s"${githubPage.toExternalForm}/blob/$branch"))
lazy val buildMetadata = Vector(
licenses := projectLicenses,

Loading…
Cancel
Save