docs: fix macOS install (Finder Merge silently skips files; use rsync)#212
Open
mvanhorn wants to merge 1 commit into
Open
docs: fix macOS install (Finder Merge silently skips files; use rsync)#212mvanhorn wants to merge 1 commit into
mvanhorn wants to merge 1 commit into
Conversation
Collaborator
|
Would it be possible to invert the order of the installation guide, please? Although installing PhotoGIMP via the terminal is more convenient, I think it may make things more confusing for most people. Ty for helping PhotoGIMP @mvanhorn |
gabrielalmir
requested changes
Jul 9, 2026
gabrielalmir
left a comment
Collaborator
There was a problem hiding this comment.
As mentioned before, consider making the terminal guide an alternative installation method.
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.
Summary
Fix macOS install (Finder Merge silently skips files; use rsync).
Why this matters
On macOS (reported on Tahoe with GIMP 3.2, confirmed on Sonoma), following the README's macOS Install steps produces only a changed splash screen and none of the other PhotoGIMP customizations. The root cause, established in the thread by the reporter and three other users, is that macOS Finder's "Merge" of the extracted
3.0folder into~/Library/Application Support/GIMPsilently skips most existing files, so the shortcuts, tool layout, and prefs never get replaced. The reporter found thatrsync -av --ignore-times <src>/ <dest>/from the Terminal reliably copies the contents, and multiple commenters explicitly asked for the rsync method to be added to the README's macOS instructions. TTesting
Changes are scoped to the files named in the fix; added or updated tests where the project has a suite, and matched existing conventions.
Fixes #169