Codestyle fix #1495

This commit is contained in:
Wojtek Figat
2023-09-22 12:57:07 +02:00
parent 5f9a81a664
commit 787479357e
2 changed files with 3 additions and 3 deletions

View File

@@ -754,9 +754,9 @@ namespace Flax.Build
public static string GetPlatformExecutableExt()
{
var extEnding = ".exe";
if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX) || RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX) || RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
extEnding = "";
extEnding = "";
}
return extEnding;