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:
Eugene Yokota 2020-04-20 00:01:40 -04:00
parent 26e0908f52
commit 04823219e9
1 changed files with 1 additions and 1 deletions

View File

@ -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)