From 03b40d43c9341b9a11c6108c30064827499ef320 Mon Sep 17 00:00:00 2001 From: Jamie Cansdale Date: Wed, 18 Dec 2019 11:30:32 +0000 Subject: [PATCH] Change "java.home" to "/usr/lib/jvm/default-java" The previous path doesn't exist on the default VSO image. --- .devcontainer/devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 6eca1b646..66bf18ff9 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,7 +6,7 @@ // You can edit these settings after create using File > Preferences > Settings > Remote. "settings": { "terminal.integrated.shell.linux": "/bin/bash", - "java.home": "/usr/lib/jvm/zulu-8-azure-amd64" + "java.home":"/usr/lib/jvm/default-java" }, // Use 'appPort' to create a container with published ports. If the port isn't working, be sure @@ -24,4 +24,4 @@ "ms-azuretools.vscode-azurefunctions", "vscjava.vscode-java-pack" ] -} \ No newline at end of file +}