Browse Source

Tools: check for Java 8 on Linux

This allows us to print an error message instead of a weird Java failure
further down the road.

Better yet would be if this would take down everything, so a user does
not have to scroll up to read the message.
sbg
Julian Oes 5 years ago committed by Daniel Agar
parent
commit
733e73e185
  1. 6
      Tools/jmavsim_run.sh

6
Tools/jmavsim_run.sh

@ -66,6 +66,12 @@ if [ "$(uname)" == "Darwin" ]; then @@ -66,6 +66,12 @@ if [ "$(uname)" == "Darwin" ]; then
exit 1
fi
export JAVA_HOME=`/usr/libexec/java_home -v 1.8`
elif [ "$(uname)" == "Linux" ]; then
if ! java -version 2>&1 | grep --quiet "1.8" ; then
echo "${bold}You need to use Java 8, for more info, see:${normal}"
echo "${bold}https://dev.px4.io/master/en/simulation/jmavsim.html#ubuntu${normal}"
exit 1
fi
fi
ant create_run_jar copy_res

Loading…
Cancel
Save