aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-06-30 11:50:50 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2017-06-30 11:50:50 -0400
commitcf4533b4c095cea6524301043a4a793d2d89d6b6 (patch)
tree434a9038f270e61c139d464da8c2130d33624c17
parent1b515ca6f55c4e8935f758fecea8df7ee7777b0c (diff)
downloadcbt-cf4533b4c095cea6524301043a4a793d2d89d6b6.tar.gz
cbt-cf4533b4c095cea6524301043a4a793d2d89d6b6.tar.bz2
cbt-cf4533b4c095cea6524301043a4a793d2d89d6b6.zip
fix cross-version caching key
-rw-r--r--stage2/BasicBuild.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage2/BasicBuild.scala b/stage2/BasicBuild.scala
index 66167b8..2b04614 100644
--- a/stage2/BasicBuild.scala
+++ b/stage2/BasicBuild.scala
@@ -17,7 +17,7 @@ trait BaseBuild extends BuildInterface with DependencyImplementation with SbtDep
// will create new instances given the context, which means operations in the
// overrides will happen multiple times and if they are not idempotent stuff likely breaks
def context: Context
- override lazy val moduleKey: String = "BaseBuild("+target.string+")"
+ override lazy val moduleKey: String = "BaseBuild("+scalaTarget.string+")"
implicit def transientCache: java.util.Map[AnyRef,AnyRef] = context.transientCache
object libraries extends libraries( context, scalaVersion, scalaMajorVersion )