We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37a2052 commit 5e5d665Copy full SHA for 5e5d665
1 file changed
src/DiffEngine/Process/LinuxOsxProcess.cs
@@ -120,9 +120,11 @@ static bool TryRunPs([NotNullWhen(true)] out string? result)
120
121
if (process.ExitCode != 0)
122
{
123
- var error = $@"Could not execute process. Command line: ps {arguments}.
124
-Output: {outputBuilder}
125
-Error: {errorBuilder}";
+ var error = $"""
+ Could not execute process. Command line: ps {arguments}.
+ Output: {outputBuilder}
126
+ Error: {errorBuilder}
127
+ """;
128
throw new(error);
129
}
130
0 commit comments