Added java home

This commit is contained in:
Thorsten Muerell
2017-11-08 15:57:44 +01:00
parent 2267d86f03
commit c684fa0c7c
2 changed files with 3 additions and 2 deletions

View File

@@ -80,7 +80,7 @@
"properties": { "properties": {
"frog.javaHome": { "frog.javaHome": {
"type": "string", "type": "string",
"default": false, "default": "",
"description": "Set the java home to use for the runner." "description": "Set the java home to use for the runner."
} }
} }

View File

@@ -60,7 +60,8 @@ export class SessionManager {
} }
let extPath = vscode.extensions.getExtension("todie.frog").extensionPath; let extPath = vscode.extensions.getExtension("todie.frog").extensionPath;
let javaHome = vscode.workspace.getConfiguration('frog').get("frog.javaHome", "") const configuration = vscode.workspace.getConfiguration('frog')
const javaHome = configuration.get("javaHome", "")
let java = "java"; let java = "java";
if (javaHome) { if (javaHome) {
java = path.join(javaHome, 'bin', 'java') java = path.join(javaHome, 'bin', 'java')