Skip to content

Commit a025ed4

Browse files
authored
(PR #7) Always use case-sensitive paths on Linux
1 parent 7be49fb commit a025ed4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)