gerrit.sh: Fix message about JRE

Gerrit requires Java 8, but the message mentioned ">= 1.7".

Change-Id: I5ff3ad595d0e3fb2531bdc8457e384ec7ac08b2e
This commit is contained in:
David Pursehouse
2019-06-20 15:39:52 +09:00
parent 62ef2e5f26
commit 76b5edf535

View File

@@ -265,7 +265,7 @@ fi
if test -z "$JAVA" ; then
echo >&2 "Cannot find a JRE or JDK. Please ensure that the JAVA_HOME environment"
echo >&2 "variable or container.javaHome in $GERRIT_SITE/etc/gerrit.config is"
echo >&2 "set to a valid >=1.7 JRE location"
echo >&2 "set to a valid >=1.8 JRE location"
exit 1
fi