Revert "Merge pull request #14623 from nik9000/no_home_home"

This reverts commit cf8ffd32ac, reversing
changes made to 40650ad2d5.
This commit is contained in:
Jason Tedor 2015-11-09 10:37:16 -05:00
parent 43b729f34c
commit 013347be9b
1 changed files with 2 additions and 2 deletions

View File

@ -279,7 +279,7 @@ class ClusterFormationTasks {
onlyIf { pidFile.exists() }
// the pid file won't actually be read until execution time, since the read is wrapped within an inner closure of the GString
ext.pid = "${ -> pidFile.getText('UTF-8').trim()}"
commandLine new File(System.getProperty('java.home'), 'bin/jps'), '-l'
commandLine new File(System.getenv('JAVA_HOME'), 'bin/jps'), '-l'
standardOutput = new ByteArrayOutputStream()
doLast {
String out = standardOutput.toString()