mirror of
https://github.com/github/codeql.git
synced 2025-12-24 12:46:34 +01:00
Fix path expression
This commit is contained in:
@@ -36,8 +36,7 @@ def regenerateModel(lgtmSlug, extractedDb):
|
||||
print("ERROR: slug " + lgtmSlug +
|
||||
" is not mapped to a model file in script " + sys.argv[0])
|
||||
sys.exit(1)
|
||||
modelFile = defaultModelPath + \
|
||||
lgtmSlugToModelFile[lgtmSlug]
|
||||
modelFile = defaultModelPath + "/" + lgtmSlugToModelFile[lgtmSlug]
|
||||
codeQlRoot = findGitRoot()
|
||||
targetModel = codeQlRoot + "/" + modelFile
|
||||
subprocess.check_call([codeQlRoot + "/java/ql/src/utils/model-generator/GenerateFlowModel.py", extractedDb,
|
||||
|
||||
Reference in New Issue
Block a user