Zulip Chat Archive
Stream: general
Topic: upper/lower case letters in imported file name
Asei Inoue (Nov 12 2024 at 18:08):
in vscode import Mathlib.Tactic.Linter.MultiGoal
does not causes an error.
but in CI import Mathlib.Tactic.Linter.MultiGoal
raise an error. (correct file name is Multigoal
)
Asei Inoue (Nov 12 2024 at 18:08):
Shouldn't VSCode also make an error if the case is wrong?
Mauricio Collares (Nov 12 2024 at 18:12):
This was once fixed in lean4#4538 but then reverted due to performance issues. The reason for the discrepancy is that Mac/Windows have case-insensitive file systems, while Linux doesn't.
Last updated: May 02 2025 at 03:31 UTC