Browse Source

Merge branch 'master' of github.com:mfornet/acmx

Marcelo Fornet 5 years ago
parent
commit
6fb61f417e
2 changed files with 4 additions and 2 deletions
  1. 1 1
      package-lock.json
  2. 3 1
      src/gwen.ts

+ 1 - 1
package-lock.json

@@ -177,7 +177,7 @@
             "dependencies": {
                 "chalk": {
                     "version": "1.1.3",
-                    "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+                    "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
                     "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
                     "dev": true,
                     "requires": {

+ 3 - 1
src/gwen.ts

@@ -1,13 +1,15 @@
 import { openSync, writeSync } from "fs";
 import { spawnSync } from "child_process";
+import * as vscode from 'vscode';
 import { TESTCASES } from "./core";
 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);