Case Sensitivity #1287
Closed
drewyoungren
started this conversation in
General
Replies: 2 comments 1 reply
|
I think we should add a test to our CI that will fail if we have case-insensitive collisions. We could add a CI test that attempts to build or test in a MacOS environment, e.g., with What about adding a test to directly search for case-insensitive collisions? This one was created by Gemini. If I run the script in |
1 reply
|
PR #1309 adds the case-insensitive collision check to the CI and then fixes the collision with the |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
This is a small thing, but when I initially tried to build the app locally it failed for a very specific reason. I'm on macOS and the APFS is by default case insensitive so some, but only very few, import statements failed. Specifically, it was those looking at either of
that caused the issue.
At first I just renamed them and got it to work, but as that is not ideal, I just made a case-sensitive volume on my hard drive (which I should probably use for all dev repos), and it worked fine. Anyway, it might be good to change the names to avoid this or make a note in the README for those on platforms with a case-insensitive file system.
All reactions