chore(init.sh): improve detect cmake version

This commit is contained in:
John Zhao 2019-03-29 16:27:53 +08:00
parent b71818062e
commit 3ac3c7c8ee

View File

@ -41,12 +41,16 @@ fi
## cmake version ## cmake version
_echo_s "Expect cmake version >= 3.0" _cmake_version=`cmake --version | head -1`
cmake --version | head -1 _cmake_version=${_cmake_version#*version}
if [ "$HOST_NAME" = "Ubuntu" ]; then _cmake_version_major=`echo ${_cmake_version} | cut -d'.' -f1`
# sudo apt remove cmake if [ "$_cmake_version_major" -lt "3" ]; then
_echo "How to upgrade cmake in Ubuntu" _echo_s "Expect cmake version >= 3.0.0"
_echo " https://askubuntu.com/questions/829310/how-to-upgrade-cmake-in-ubuntu" if [ "$HOST_NAME" = "Ubuntu" ]; then
# sudo apt remove cmake
_echo "How to upgrade cmake in Ubuntu"
_echo " https://askubuntu.com/questions/829310/how-to-upgrade-cmake-in-ubuntu"
fi
fi fi
exit 0 exit 0