Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .install/install_cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ MODE=$1 # whether to install using sudo or not

if [[ $OS_TYPE = 'Darwin' ]]
then
brew install cmake
if ! command -v cmake &> /dev/null; then
brew install cmake
else
echo "cmake already installed"
fi
else
if [[ $processor = 'x86_64' ]]
then
Expand Down
Loading