Skip to content

Commit

Permalink
Merge pull request dotnet#538 from radical/revert-osname
Browse files Browse the repository at this point in the history
$(OS) should return only two values - `Windows_NT` and `Unix` .
  • Loading branch information
rainersigwald committed Apr 11, 2016
2 parents eb61674 + 0a4ed63 commit 5e01f07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Shared/NativeMethodsShared.cs
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ internal static string OSName
{
get
{
return IsOSX ? "OSX" : (IsUnix ? "Unix" : "Windows_NT");
return IsWindows ? "Windows_NT" : "Unix";
}
}

Expand Down

0 comments on commit 5e01f07

Please sign in to comment.