Skip to content

Commit

Permalink
Merge pull request #1500 from tgodzik/use-temurin-default
Browse files Browse the repository at this point in the history
bugfix: Use temurin explicitely
  • Loading branch information
tgodzik authored May 14, 2024
2 parents dac3366 + 24aeaac commit d27baf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/metals-languageclient/src/setupCoursier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export async function setupCoursier(
const resolveJavaHomeWithCoursier = async (coursier: string) => {
await run(
coursier,
["java", "--jvm", javaVersion, "-version"],
["java", "--jvm", `temurin:${javaVersion}`, "-version"],
handleOutput
);

Expand Down

0 comments on commit d27baf2

Please sign in to comment.