Skip to content

Commit

Permalink
CMake skip install check needs to include version 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
BetsyMcPhail committed Oct 14, 2016
1 parent cae7373 commit fd0a8b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup/ubuntu/16.04/install_prereqs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ install_cmake=true
if command -v cmake &>/dev/null; then
cmake_version=$(cmake --version) &>/dev/null
cmake_version=${cmake_version:14:3}
if [[ $cmake_version > "3.5" ]]; then
if [[ $cmake_version > "3.5" || $cmake_version == "3.5" ]]; then
echo "CMake is already installed ($cmake_version)"
install_cmake=false
fi
Expand Down

0 comments on commit fd0a8b9

Please sign in to comment.