mirror of
https://github.com/github/codeql-action.git
synced 2026-04-28 01:48:48 +00:00
Display the error message on one line if possible
This commit is contained in:
+4
-2
@@ -54,9 +54,11 @@ export class CommandInvocationError extends Error {
|
||||
const prettyCommand = [cmd, ...args]
|
||||
.map((x) => (x.includes(" ") ? `'${x}'` : x))
|
||||
.join(" ");
|
||||
error = error.trim();
|
||||
const separator = error.includes("\n") ? "\n" : " ";
|
||||
super(
|
||||
`Encountered a fatal error while running "${prettyCommand}".\n` +
|
||||
`Exit code was ${exitCode} and error was:\n` +
|
||||
`Encountered a fatal error while running "${prettyCommand}".${separator}` +
|
||||
`Exit code was ${exitCode} and error was:${separator}` +
|
||||
`${error}`
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user