Fix extra whitespace in CommandInvocationError
This commit is contained in:
parent
21c926745f
commit
e94e15d8dd
3 changed files with 7 additions and 7 deletions
|
|
@ -52,9 +52,9 @@ export class CommandInvocationError extends Error {
|
|||
public output: string
|
||||
) {
|
||||
super(
|
||||
`Failure invoking ${cmd} with arguments ${args}.\n
|
||||
Exit code ${exitCode} and error was:\n
|
||||
${error}`
|
||||
`Failure invoking ${cmd} with arguments ${args}.\n` +
|
||||
`Exit code ${exitCode} and error was:\n` +
|
||||
`${error}`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue