Remove stray brace from compilation error output

An extra brace was inadvertently introduced into a template literal used to format output text in the event of an error
during compilation. This caused the text to end in a pointless `}`

For example:

```
Compilation error: exit status 1}
```

After this change, the output text is as expected:

```
Compilation error: exit status 1
```
This commit is contained in:
per1234 2022-01-14 14:22:57 -08:00
parent bc365f4a8d
commit 66fc27e58c

View File

@ -96,7 +96,7 @@ export class CoreServiceImpl extends CoreClientAware implements CoreService {
e.details
);
this.responseService.appendToOutput({
chunk: `${errorMessage}}\n`,
chunk: `${errorMessage}\n`,
severity: 'error',
});
throw new Error(errorMessage);