Skip to content

Commit

Permalink
debugging v
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Kubicek committed Apr 30, 2015
1 parent 3acf091 commit dc018aa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion project/PluginBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ object PluginBuild extends Build {
git.versionProperty := "NONE",
git.gitDescribedVersion <<= {
git.gitDescribedVersion((vO) => vO.map { v =>
if (v.startsWith("v")) v.drop(1) else v
println("v = " + v)
val result = if (v.startsWith("v")) v.drop(1) else v
println("result = " + result)
result
})
}
)
Expand Down

0 comments on commit dc018aa

Please sign in to comment.