diff options
author | Brad Richardson <everythingfunctional@protonmail.com> | 2020-02-25 14:00:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-25 14:00:21 -0800 |
commit | 5d38dffc1023cef688e055019fa2569618cf1a4d (patch) | |
tree | 7b13ccc55588d467708c20f14b114cc56bb93b0b /archive/ci/install_cmake.sh | |
parent | 2292bbd1d57c97d800e87e1cb6ccd1981ad50333 (diff) | |
parent | d9cd40f9d84e104207f8ef34c6d5a4f9d1b3af4b (diff) | |
download | fpm-5d38dffc1023cef688e055019fa2569618cf1a4d.tar.gz fpm-5d38dffc1023cef688e055019fa2569618cf1a4d.zip |
Merge pull request #40 from everythingfunctional/master
Switch to using Haskell
Diffstat (limited to 'archive/ci/install_cmake.sh')
-rwxr-xr-x | archive/ci/install_cmake.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/archive/ci/install_cmake.sh b/archive/ci/install_cmake.sh new file mode 100755 index 0000000..9afe1e2 --- /dev/null +++ b/archive/ci/install_cmake.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +set -ex + +wget -qO- https://github.com/Kitware/CMake/releases/download/v3.16.3/cmake-3.16.3-Linux-x86_64.tar.gz | sudo tar xz --strip=1 -C /usr/local/ +which cmake +cmake --version |