Skip to content

Commit 5e5d665

Browse files
committed
Update LinuxOsxProcess.cs
1 parent 37a2052 commit 5e5d665

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

src/DiffEngine/Process/LinuxOsxProcess.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,11 @@ static bool TryRunPs([NotNullWhen(true)] out string? result)
120120

121121
if (process.ExitCode != 0)
122122
{
123-
var error = $@"Could not execute process. Command line: ps {arguments}.
124-
Output: {outputBuilder}
125-
Error: {errorBuilder}";
123+
var error = $"""
124+
Could not execute process. Command line: ps {arguments}.
125+
Output: {outputBuilder}
126+
Error: {errorBuilder}
127+
""";
126128
throw new(error);
127129
}
128130

0 commit comments

Comments
 (0)