mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
8 lines
233 B
Python
8 lines
233 B
Python
import platform
|
|
from create_database_utils import *
|
|
|
|
gradle_cmd = "gradlew.bat" if platform.system() == "Windows" else "./gradlew"
|
|
|
|
run_codeql_database_create(
|
|
["%s build --no-daemon --no-build-cache" % gradle_cmd], lang="java")
|