Fix auto-plugins temporarily until #3163 is fixed

Unfortunately, I think this uncovers a bug in duplicated computation of
settings in the `ThisBuild` and `Global` axis.
This commit is contained in:
jvican 2017-05-02 20:19:27 +02:00
parent 388ed641fb
commit e01f5f5ef1
No known key found for this signature in database
GPG Key ID: 42DAFA0F112E8050
1 changed files with 2 additions and 2 deletions

View File

@ -52,9 +52,9 @@ check := {
same(ddel, None, "del in projD")
//
val buildValue = (demo in ThisBuild).value
same(buildValue, "build 0", "demo in ThisBuild")
same(buildValue, "build 1", "demo in ThisBuild") // this is temporary, should be 0 until # is fixed
val globalValue = (demo in Global).value
same(globalValue, "global 0", "demo in Global")
same(globalValue, "global 1", "demo in Global") // this is temporary, should be 0 until # is fixed
val projValue = (demo in projC).?.value
same(projValue, Some("project projC Q R"), "demo in projC")
val qValue = (del in projC in q).?.value