You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
280 B
5 lines
280 B
#!/bin/bash
|
|
sudo rm -rf /usr/local/cmake-3.9.2 && sudo rm -rf /usr/local/cmake
|
|
wget https://cmake.org/files/v3.12/cmake-3.12.0-rc2-Linux-x86_64.sh
|
|
chmod +x cmake-3.12.0-rc2-Linux-x86_64.sh
|
|
sudo ./cmake-3.12.0-rc2-Linux-x86_64.sh --skip-license --exclude-subdir --prefix=/usr/local
|