Fix mismatched user and group ownership in Docker script.#202
Merged
Conversation
Fix proposed by Prad.
dgelessus
reviewed
Oct 7, 2025
dgelessus
left a comment
Contributor
There was a problem hiding this comment.
About the parallel build issue: I think this is because we're using the default CMake generator (Unix Makefiles). In that case, --parallel with no argument translates to make -j with no argument, which means an unlimited number of parallel jobs, and that will overload most systems.
Perhaps we should add -G Ninja to the CMake call, because Ninja properly limits parallel builds based on the number of cores. (I think with Ninja, parallel builds are also the default and you don't even need to pass --parallel to cmake --build.)
zrax
reviewed
Oct 8, 2025
zrax
approved these changes
Nov 6, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
https://discord.com/channels/282045216221822978/282046743338811392/1424555618668384339 up to https://discord.com/channels/282045216221822978/282046743338811392/1424583169750863902 .
Prad wrote:
Prad wrote:
The Desktop computer I installed dirtsand on, run Windows 11 Pro x64, and I had an issue that disallowed me to build dockersand; the fix proposed by Prad worked for me too.