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

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