From 29d594ef2f4a4ec9cfca8cab989d3a7478b0eadc Mon Sep 17 00:00:00 2001 From: Jesus Castagnetto Date: Fri, 1 Feb 2013 19:34:50 -0500 Subject: [PATCH] Added Java 8 to version check --- refine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/refine b/refine index fb03850b8..feaaa6704 100755 --- a/refine +++ b/refine @@ -854,7 +854,7 @@ if [ ! -x "$JAVA" ] ; then error "Could not find the 'java' executable at '$JAVA', are you sure your JAVA_HOME environment variable is pointing to a proper java installation?" fi -JAVA_VERSION=`$JAVA -version 2>&1 | grep version | cut -d ' ' -f 3 | egrep '^\"1\.(6|7)'` +JAVA_VERSION=`$JAVA -version 2>&1 | grep version | cut -d ' ' -f 3 | egrep '^\"1\.(6|7|8)'` if [ -z "$JAVA_VERSION" ] ; then error "OpenRefine requires Java version 6 or later. If you have multiple versions of Java installed, please set the environment variable JAVA_HOME to the correct version." fi