Skip to content
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.

Commit

Permalink
Fix sbt release tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
nicktelford committed May 19, 2016
1 parent 56eb6a5 commit 53fe0bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/Project.scala
Expand Up @@ -96,7 +96,7 @@ object DropwizardScala extends Build {
case (s, v) => s / ("scala_" + v) :: Nil
},
version := Versions.project,
releaseTagName <<= (name, version in ThisBuild) map { (n,v) => n + "-" + v }
releaseTagName <<= (normalizedName, version in ThisBuild) map { (n,v) => n + "-" + v }
)

def module(id: String): sbt.Project = module(id, file(id), Nil)
Expand Down

0 comments on commit 53fe0bf

Please sign in to comment.