Open
Conversation
Fix a bug where excluded directories were not detected because only the filename was checked, not the full path. Add __MACOSX to the list of excluded directories. Update error message.
There was a problem hiding this comment.
Pull request overview
Updates the Theme Check “Directories” check to correctly detect disallowed directories by inspecting full file paths (not just basenames), and adds __MACOSX to the disallowed directory list to help catch macOS ZIP artifacts.
Changes:
- Detect disallowed directories by checking path segments across full file paths.
- Add
__MACOSXto the excluded/disallowed directories list. - Update the required-message text shown when an excluded directory is found.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…ss/theme-check into update/directories_check
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.
Closes #403
Replaces #414
Fixes a bug where disallowed directories were not detected because only the filename was checked, not the full path.
Adds __MACOSX to the list of directories.
Updates the error message.
Does not detect empty folders, it seems unlikely that empty folders would be included.
It is kind of backwards to check for files and then check what folder they are in... But we already have the list of files.
This is only one way to solve this, but it is the smallest change. I don't feel strongly for or against this versus a directory scan.
Testing Instructions
You need at least two themes installed.
Try some of the other folder names as well.
AI Usage: I argued back and forward with Copilot.