mirror of https://github.com/sbt/sbt.git
Use the same baseDirectory for all rows
Fixes #3 Under source dependency situation, `new File(childId)` doesn't work well.
This commit is contained in:
parent
26e0908f52
commit
04823219e9
|
|
@ -226,7 +226,7 @@ object ProjectMatrix {
|
|||
val other = lookupMatrix(ref)
|
||||
resolveMatrixAggregate(other, r)
|
||||
}
|
||||
val p = Project(childId, new sbt.File(childId).getAbsoluteFile)
|
||||
val p = Project(childId, base.getAbsoluteFile)
|
||||
.dependsOn(deps: _*)
|
||||
.aggregate(aggs: _*)
|
||||
.setPlugins(plugins)
|
||||
|
|
|
|||
Loading…
Reference in New Issue