Marcelo Fornet 5 years ago
parent
commit
aaa737c293
2 changed files with 2 additions and 2 deletions
  1. 1 1
      package.json
  2. 1 1
      src/gwen.ts

+ 1 - 1
package.json

@@ -4,7 +4,7 @@
     "description": "Competitive Programming made simple",
     "icon": "images/logo.png",
     "publisher": "marx24",
-    "version": "0.2.3",
+    "version": "0.2.4",
     "license": "MIT",
     "engines": {
         "vscode": "^1.30.0"

+ 1 - 1
src/gwen.ts

@@ -9,7 +9,7 @@ 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(python_path, ["-m", `tcgen`, "--path", `${tcPath}`, "--output", `${outputPath}`]);
+    let exitCode = spawnSync(python_path!, ["-m", `tcgen`, "--path", `${tcPath}`, "--output", `${outputPath}`]);
 
     console.log("exticode:", exitCode);