You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// if running on an unsupported platform, use this blanket category for all errors
173
+
[CliConfigErrorCategory.UnsupportedPlatform]: {
174
+
cliErrorMessageCandidates: [newRegExp("")],
175
+
precondition: isUnsupportedPlatform,
176
+
additionalErrorMessageToAppend:
177
+
`This platform/arch combination (${process.platform}/${process.arch}) is not supported by the CodeQL CLI. See https://codeql.github.com/docs/codeql-overview/system-requirements`,
178
+
},
159
179
[CliConfigErrorCategory.AutobuildError]: {
160
180
cliErrorMessageCandidates: [
161
181
newRegExp("We were unable to automatically build your code"),
@@ -298,6 +318,9 @@ export function getCliConfigCategoryIfExists(
0 commit comments