mirror of
https://github.com/github/codeql.git
synced 2026-05-22 15:17:09 +02:00
KE2: Tolerate existing KotlinExtractorDbScheme.kt file in build script
This commit is contained in:
1
java/kotlin-extractor2/.gitignore
vendored
Normal file
1
java/kotlin-extractor2/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
src/main/kotlin/KotlinExtractorDbScheme.kt
|
||||
@@ -27,7 +27,7 @@ genrule(
|
||||
|
||||
kt_jvm_library(
|
||||
name = "ke2-kt",
|
||||
srcs = [":generated-dbscheme"] + glob(["src/main/java/**/*.java"]) + glob(["src/main/kotlin/**/*.kt"]),
|
||||
srcs = [s for s in [":generated-dbscheme"] + glob(["src/main/java/**/*.java"]) + glob(["src/main/kotlin/**/*.kt"]) if s != "src/main/kotlin/KotlinExtractorDbScheme.kt"],
|
||||
javac_opts = ":javac-options",
|
||||
kotlinc_opts = ":kotlinc-options",
|
||||
module_name = "codeql-kotlin-extractor2",
|
||||
|
||||
Reference in New Issue
Block a user