Bug Type (问题类型)
others (please edit later)
Before submit
Environment (环境信息)
{"versions":{"version":"v1","core":"0.12.0.0","gremlin":"3.4.3","api":"0.67.0.0"}}
Expected & Actual behavior (期望与实际表现)
hugegraph-dist/src/assembly/static/bin/hugegraph-server.sh
if [[ $? -ne 0 || $JAVA_VERSION < $EXPECT_JDK_VERSION ]]; then
echo "Please make sure that the JDK is installed and the version >= $EXPECT_JDK_VERSION" \
>> ${OUTPUT}
exit 1
fi
directly using < may cause problem。My default java 11 will exit at this. but java 11 is bigger than java 8.
Bug Type (问题类型)
others (please edit later)
Before submit
Environment (环境信息)
{"versions":{"version":"v1","core":"0.12.0.0","gremlin":"3.4.3","api":"0.67.0.0"}}
Expected & Actual behavior (期望与实际表现)
hugegraph-dist/src/assembly/static/bin/hugegraph-server.sh
directly using
<may cause problem。My default java 11 will exit at this. but java 11 is bigger than java 8.