Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ff95d14

Browse files
committedAug 24, 2023
Kotlin: Fix lint
1 parent 30fe0c4 commit ff95d14

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/init-action.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,8 @@ async function run() {
347347
core.exportVariable("CODEQL_EXTRACTOR_JAVA_AGENT_DISABLE_KOTLIN", "true");
348348
}
349349

350-
const kotlinLimitVar = "CODEQL_EXTRACTOR_KOTLIN_OVERRIDE_MAXIMUM_VERSION_LIMIT";
350+
const kotlinLimitVar =
351+
"CODEQL_EXTRACTOR_KOTLIN_OVERRIDE_MAXIMUM_VERSION_LIMIT";
351352
if (await codeQlVersionAbove(codeql, "2.13.4")) {
352353
core.exportVariable(kotlinLimitVar, "1.9.20");
353354
}

0 commit comments

Comments
 (0)
Please sign in to comment.