Fix python string
This commit is contained in:
parent
147734591c
commit
34955967b7
2 changed files with 2 additions and 2 deletions
2
lib/analyze.js
generated
2
lib/analyze.js
generated
|
|
@ -32,7 +32,7 @@ async function setupPythonExtractor(logger) {
|
|||
};
|
||||
await new toolrunnner.ToolRunner(codeqlPython, [
|
||||
"-c",
|
||||
"import·os;·import·pip;·print(os.path.dirname(os.path.dirname(pip.__file__)))",
|
||||
"import os; import pip; print(os.path.dirname(os.path.dirname(pip.__file__)))",
|
||||
], options).exec();
|
||||
logger.info(`Setting LGTM_INDEX_IMPORT_PATH=${output}`);
|
||||
process.env["LGTM_INDEX_IMPORT_PATH"] = output;
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ async function setupPythonExtractor(logger: Logger) {
|
|||
codeqlPython,
|
||||
[
|
||||
"-c",
|
||||
"import·os;·import·pip;·print(os.path.dirname(os.path.dirname(pip.__file__)))",
|
||||
"import os; import pip; print(os.path.dirname(os.path.dirname(pip.__file__)))",
|
||||
],
|
||||
options
|
||||
).exec();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue