Merge "Skip DepsMutator on disabled modules"
This commit is contained in:
@@ -205,7 +205,7 @@ func (mutator *mutator) Parallel() MutatorHandle {
|
||||
}
|
||||
|
||||
func depsMutator(ctx BottomUpMutatorContext) {
|
||||
if m, ok := ctx.Module().(Module); ok {
|
||||
if m, ok := ctx.Module().(Module); ok && m.Enabled() {
|
||||
m.DepsMutator(ctx)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user