Skip to content

Commit 6c58c4a

Browse files
committed
Unix -> Posix
1 parent 80e0308 commit 6c58c4a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/SeqCli/Cli/CommandLineHost.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public async Task<int> Run(string[] args, LoggingLevelSwitch levelSwitch)
5858

5959
var currentPlatform = RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
6060
? SupportedPlatforms.Windows
61-
: SupportedPlatforms.Unix;
61+
: SupportedPlatforms.Posix;
6262

6363
var cmd = _availableCommands.SingleOrDefault(c =>
6464
c.Metadata.Platforms.HasFlag(currentPlatform) && featureVisibility.HasFlag(c.Metadata.Visibility) &&

src/SeqCli/Cli/Commands/HelpCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class HelpCommand : Command
2828
{
2929
readonly SupportedPlatforms _currentPlatform = RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
3030
? SupportedPlatforms.Windows
31-
: SupportedPlatforms.Unix;
31+
: SupportedPlatforms.Posix;
3232

3333
readonly IEnumerable<Meta<Lazy<Command>, CommandMetadata>> _allCommands;
3434
bool _markdown;

src/SeqCli/Cli/SupportedPlatforms.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ public enum SupportedPlatforms
77
{
88
None,
99
Windows,
10-
Unix,
11-
All = Windows | Unix
10+
Posix,
11+
All = Windows | Posix
1212
}

0 commit comments

Comments
 (0)