Skip to content

Commit

Permalink
Update CommandExecutor.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
WeihanLi authored Dec 30, 2023
1 parent 1cae77d commit 276d5f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WeihanLi.Common/Helpers/CommandExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public CommandResult EnsureSuccessExitCode(int successCode = 0)
{
if (ExitCode != successCode)
{
throw new InvalidOperationException($"Unexpected exit code:{ExitCode} {StandardError}");
throw new InvalidOperationException($"Unexpected exit code:{ExitCode}");
}
return this;
}
Expand Down

0 comments on commit 276d5f2

Please sign in to comment.