Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
splitice committed Jan 1, 2024
1 parent 5996e07 commit 4c27a1b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion IPTables.Net.Tests/IPTables.Net.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
<PackageReference Include="SystemInteract.Local" Version="1.1.4-cibuild0005" />
<PackageReference Include="SystemInteract.Local" Version="1.1.4-cibuild0006" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion IPTables.Net/IPTables.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageReference Include="IPNetwork2" Version="2.6.618">
<Aliases>IPNetwork2</Aliases>
</PackageReference>
<PackageReference Include="SystemInteract" Version="1.1.4-cibuild0005" />
<PackageReference Include="SystemInteract" Version="1.1.4-cibuild0006" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions IPTables.Net/IpUtils/Utils/IpController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ protected string[] Command(string command, params string[] args)
{
string output, error;
ProcessHelper.ReadToEnd(process, out output, out error);
Console.WriteLine(cmd);
/*Console.WriteLine(cmd);
Console.WriteLine("output" + output);
Console.WriteLine("error" + error);
Console.WriteLine("error" + error);*/
return new string[] {output.Trim(), error.Trim()};
}
}
Expand Down

0 comments on commit 4c27a1b

Please sign in to comment.