Skip to content

Commit

Permalink
NOSNOW Fix operating system name (#1047)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-knozderko authored Oct 28, 2024
1 parent 6b1114a commit 8199563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Snowflake.Data/Core/Tools/Diagnostics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private static void AppendAssemblyInfo(StringBuilder info, Assembly assembly, st
private static string OsName()
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
return "UNIX";
return "LINUX";
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
return "WINDOWS";
if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
Expand Down

0 comments on commit 8199563

Please sign in to comment.