Skip to content

Commit

Permalink
Make isUnix internal instead of private
Browse files Browse the repository at this point in the history
  • Loading branch information
Perry committed Aug 25, 2023
1 parent ee5ce0a commit 3f8bcae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CommandExec/Command.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Command : IEnumerable
#region Fields
string args;
internal readonly Process process;
static readonly bool isUnix = !RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
internal static readonly bool isUnix = !RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
#endregion

#region Standard Streams
Expand Down

0 comments on commit 3f8bcae

Please sign in to comment.