Resolve violations of no-useless-escape lint

Resolves #205
This commit is contained in:
Michael Huynh 2020-09-28 10:55:58 +08:00
parent f2e557e77f
commit c68c97e2bd
No known key found for this signature in database
GPG key ID: 760127DAE4EDD351
10 changed files with 9 additions and 10 deletions

View file

@ -77,7 +77,7 @@ export async function toolrunnerErrorCatcher(
return returnState;
} else {
throw new Error(
`The process \'${commandLine}\' failed with exit code ${returnState}`
`The process '${commandLine}' failed with exit code ${returnState}`
);
}
} else {