You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2017/11/09 14:54:06 UTC

svn commit: r1814736 - /jmeter/trunk/bin/jmeter

Author: fschumacher
Date: Thu Nov  9 14:54:06 2017
New Revision: 1814736

URL: http://svn.apache.org/viewvc?rev=1814736&view=rev
Log:
Use old form of shell execution to conform with the rest of the script.

Modified:
    jmeter/trunk/bin/jmeter

Modified: jmeter/trunk/bin/jmeter
URL: http://svn.apache.org/viewvc/jmeter/trunk/bin/jmeter?rev=1814736&r1=1814735&r2=1814736&view=diff
==============================================================================
--- jmeter/trunk/bin/jmeter (original)
+++ jmeter/trunk/bin/jmeter Thu Nov  9 14:54:06 2017
@@ -25,7 +25,7 @@
 ##   ==============================================
 # Make sure prerequisite environment variables are set
 if [ -z "$JAVA_HOME" -a -z "$JRE_HOME" ]; then
-  if [ "$(uname)" = "Darwin" ]; then
+  if [ "`uname`" = "Darwin" ]; then
     #
     if [ -x '/usr/libexec/java_home' ] ; then
       export JAVA_HOME=`/usr/libexec/java_home`