You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since Linux is case sensitive (unline Windows and MacOSX), so it is imperative that file names match exactly.
The issue however is that Cabinet is forcing lowercase anyway. Which causes issues on Linux, as files cannot be found.
This can be remedied by changing this in line 126 of Cabinetstatic _force_lowercase = !_is_microsoft && os_type != os_macosx; to static _force_lowercase = false;.
The text was updated successfully, but these errors were encountered:
tabularelf
changed the title
[Linux] Cabinet is forcing lowercase on Linux.
[Linux] Cabinet is forcing lowercase on Linux, causing files to not be found.
Dec 19, 2024
Since Linux is case sensitive (unline Windows and MacOSX), so it is imperative that file names match exactly.
The issue however is that Cabinet is forcing lowercase anyway. Which causes issues on Linux, as files cannot be found.
This can be remedied by changing this in line 126 of
Cabinet
static _force_lowercase = !_is_microsoft && os_type != os_macosx;
tostatic _force_lowercase = false;
.The text was updated successfully, but these errors were encountered: