Skip to content

Commit

Permalink
yml 7
Browse files Browse the repository at this point in the history
  • Loading branch information
iadgovuser29 committed Jan 6, 2025
1 parent 1415e28 commit 07a17f5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dotnet/ComponentClassRegistry/Pcie/src/ShellHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ public static class ShellHelper {
public static Task<Tuple<int, string, string>> Ethtool(string arguments) {
ProcessStartInfo info = new() {
FileName = "ethtool",
Arguments = "-P '" + arguments + "'",
WorkingDirectory = Path.GetDirectoryName("ethtool")?.Replace("\\", "/"),
Arguments = "-P " + arguments,
RedirectStandardOutput = true,
RedirectStandardError = true,
UseShellExecute = false,
Expand Down

0 comments on commit 07a17f5

Please sign in to comment.