Fix a bug with URL generation

This commit is contained in:
Sarah Gerweck 2017-10-27 19:35:53 -07:00
parent b33736c2f8
commit 184f085471
No known key found for this signature in database
GPG Key ID: AFCB37207DB3F226

View File

@ -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,