diff options
author | Dan Kramer <kramer425@gmail.com> | 2019-12-21 13:26:29 -0500 |
---|---|---|
committer | Dan Kramer <kramer425@gmail.com> | 2019-12-21 13:26:29 -0500 |
commit | 097d1c93832f1db69aa70b00135294e22b5fb4bf (patch) | |
tree | c8e1277b917239ce7617a2f6b4da00709853109f | |
parent | a10449bbbc1c04f3ca151e067974717145a396d7 (diff) |
add suggested fix
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools/Utils/OS.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools/Utils/OS.cs b/modules/mono/editor/GodotTools/GodotTools/Utils/OS.cs index 09719d8721..279e67b3eb 100644 --- a/modules/mono/editor/GodotTools/GodotTools/Utils/OS.cs +++ b/modules/mono/editor/GodotTools/GodotTools/Utils/OS.cs @@ -107,7 +107,7 @@ namespace GodotTools.Utils searchDirs.AddRange(pathDirs); string nameExt = Path.GetExtension(name); - bool hasPathExt = string.IsNullOrEmpty(nameExt) || windowsExts.Contains(nameExt, StringComparer.OrdinalIgnoreCase); + bool hasPathExt = !string.IsNullOrEmpty(nameExt) && windowsExts.Contains(nameExt, StringComparer.OrdinalIgnoreCase); searchDirs.Add(System.IO.Directory.GetCurrentDirectory()); // last in the list |