Fix a typo.

This commit is contained in:
Chris Gavin 2020-07-27 10:48:00 +01:00
parent 0f88c0111f
commit 5f057318b6
No known key found for this signature in database
GPG key ID: 07F950B80C27E4DA
3 changed files with 3 additions and 3 deletions

2
lib/codeql.js generated
View file

@ -138,7 +138,7 @@ async function setupCodeQL() {
codeqlCmd += ".exe";
}
else if (process.platform !== 'linux' && process.platform !== 'darwin') {
throw new Error("Unsupported plaform: " + process.platform);
throw new Error("Unsupported platform: " + process.platform);
}
cachedCodeQL = getCodeQLForCmd(codeqlCmd);
core.exportVariable(CODEQL_ACTION_CMD, codeqlCmd);