Skip to content

Commit bf9ed3a

Browse files
matteblairKleptine
authored andcommitted
(PR #7) Always use case-sensitive paths on Linux
1 parent 19d5d8e commit bf9ed3a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

com.unity.visualeffectgraph/Editor/Compiler/VFXCodeGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ static private string FormatPath(string path)
217217
{
218218
return Path.GetFullPath(path)
219219
.TrimEnd(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar)
220-
#if !UNITY_STANDALONE_LINUX
220+
#if !UNITY_STANDALONE_LINUX && !UNITY_EDITOR_LINUX
221221
.ToLowerInvariant()
222222
#endif
223223
;

0 commit comments

Comments
 (0)