Skip to content

Commit

Permalink
fix: Merge integrations when required
Browse files Browse the repository at this point in the history
Previous to this commit integrations were merged when not required.
  • Loading branch information
oSumAtrIX committed Oct 5, 2023
1 parent 3896b30 commit 06c2b76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class Patcher(

// Determine, if merging integrations is required.
for (patch in patches)
if (!patch.anyRecursively { it.requiresIntegrations }) {
if (patch.anyRecursively { it.requiresIntegrations }) {
context.bytecodeContext.integrations.merge = true
break
}
Expand Down

0 comments on commit 06c2b76

Please sign in to comment.