Skip to content

Commit 922ebc4

Browse files
committed
Use $JAVA_HOME/bin/java for the check
1 parent 6c79f72 commit 922ebc4

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

common.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,9 @@ export async function setupJavaHome(rubyPrefix) {
409409
await measure("Modifying JAVA_HOME for JRuby", async () => {
410410
console.log("attempting to run with existing JAVA_HOME")
411411

412-
let ret = await exec.exec('java', ['-jar', path.join(rubyPrefix, 'lib/jruby.jar'), '--version'], {ignoreReturnCode: true})
412+
const javaHome = process.env['JAVA_HOME']
413+
let java = javaHome ? path.join(javaHome, 'bin/java') : 'java'
414+
let ret = await exec.exec(java, ['-jar', path.join(rubyPrefix, 'lib/jruby.jar'), '--version'], {ignoreReturnCode: true})
413415

414416
if (ret === 0) {
415417
console.log("JRuby successfully starts, using existing JAVA_HOME")

dist/index.js

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)