Browse Source

Fix template file name

Marcelo Fornet 6 years ago
parent
commit
f1265d860b
2 changed files with 2 additions and 2 deletions
  1. 1 1
      package.json
  2. 1 1
      src/core.ts

+ 1 - 1
package.json

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

+ 1 - 1
src/core.ts

@@ -162,7 +162,7 @@ export function newArena(path: string){
     let templatePath: string | undefined = vscode.workspace.getConfiguration('acmx.configuration', null).get('templatePath');
 
     if (templatePath! === ""){
-        templatePath = join(SRC, 'static', solFile());
+        templatePath = join(SRC, 'static', 'template.cpp');
     }
 
     copyFileSync(templatePath!, join(path, solFile()));