浏览代码

Update gwen.ts

Salil Gokhale 5 年之前
父节点
当前提交
f702a36416
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/gwen.ts

+ 2 - 1
src/gwen.ts

@@ -6,8 +6,9 @@ import { join } from "path";
 const DEFAULT = 'import random\n\nprint(random.randint(1, 100))\n';
 
 export function create(problemPath: string, outputPath: string) {
+    let python_path: string | undefined = vscode.workspace.getConfiguration('acmx.execution', null).get('pythonPath');
     let tcPath = join(problemPath, TESTCASES);
-    let exitCode = spawnSync("python3", ["-m", `tcgen`, "--path", `${tcPath}`, "--output", `${outputPath}`]);
+    let exitCode = spawnSync(python_path, ["-m", `tcgen`, "--path", `${tcPath}`, "--output", `${outputPath}`]);
 
     console.log("exticode:", exitCode);