mirror of
https://github.com/github/codeql.git
synced 2025-12-22 03:36:30 +01:00
7 lines
261 B
Python
7 lines
261 B
Python
from create_database_utils import *
|
|
import glob
|
|
|
|
os.mkdir('build')
|
|
runSuccessfully(["javac"] + glob.glob("*.java") + ["-d", "build"])
|
|
run_codeql_database_create(["javac " + " ".join(glob.glob("*.java")) + " -d build", "kotlinc user.kt -cp build"], lang="java")
|