[2.x] fix: Fix sbtopts files priority in sbt launch script#8514
Merged
eed3si9n merged 11 commits intosbt:developfrom Jan 13, 2026
Merged
[2.x] fix: Fix sbtopts files priority in sbt launch script#8514eed3si9n merged 11 commits intosbt:developfrom
eed3si9n merged 11 commits intosbt:developfrom
Conversation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Project-level
.sbtoptssettings were being overridden by distribution defaults because the script loaded files in the wrong order. Since Java processes duplicate-Dproperties left-to-right (last wins), project options appearing first were overridden.Solution
.sbtoptsfrom prepend to append so it appears last and winsChanges
/sbtscript lines 854-862.sbtoptsnow appended instead of prependedTesting
Verified that project-level config now correctly overrides machine-wide config:
machine-configfirst,project-locallastproject-local✓Fixes #7179
Contribution by Gittensor, see my contribution statistics at https://gittensor.io/miners/details?githubId=158349177