mirror of https://github.com/sbt/sbt.git
[2.x] fix: Fix subproject evaluation order (#8672)
**Problem** Subproject definition is ordered bottom-to-top. **Solution** Fixes the definition to be top-to-bottom.
This commit is contained in:
parent
4430d4c553
commit
afc9a90374
|
|
@ -200,7 +200,7 @@ class Eval(
|
|||
inter.loader,
|
||||
inter.generated,
|
||||
inter.enclosingModule,
|
||||
inter.extra.reverse.distinct
|
||||
inter.extra.distinct.reverse,
|
||||
)
|
||||
|
||||
end evalDefinitions
|
||||
|
|
|
|||
Loading…
Reference in New Issue