aboutsummaryrefslogtreecommitdiff
path: root/cbt
diff options
context:
space:
mode:
Diffstat (limited to 'cbt')
-rwxr-xr-xcbt4
1 files changed, 2 insertions, 2 deletions
diff --git a/cbt b/cbt
index e3c7f1c..603ec23 100755
--- a/cbt
+++ b/cbt
@@ -39,8 +39,8 @@ if [ ! $javac_installed -eq 0 ]; then
fi
javac_version=$(javac -version 2>&1 | cut -d ' ' -f 2)
javac_version_minor=$(echo -n $javac_version | cut -d '.' -f 2)
-if [ ! "$javac_version_minor" -ge "8" ]; then
- echo "You need to install javac version 1.8 or greater! CBT currently relies on Java 8." 2>&1
+if [ ! "$javac_version_minor" -ge "7" ]; then
+ echo "You need to install javac version 1.7 or greater!" 2>&1
echo "Current javac version is $javac_version" 2>&1
exit 1
fi