mirror of
https://github.com/github/codeql.git
synced 2026-02-17 15:33:45 +01:00
10 lines
215 B
Python
10 lines
215 B
Python
import os
|
|
import os.path
|
|
|
|
def test(codeql, java):
|
|
codeql.database.create(build_mode = "none",
|
|
_env={
|
|
"_JAVA_OPTIONS": "-Duser.home=" + os.path.join(os.getcwd(), "empty-home")
|
|
}
|
|
)
|