mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
8 lines
207 B
Bash
Executable File
8 lines
207 B
Bash
Executable File
set -x
|
|
set -e
|
|
if [ ! -e ci/cmake/bin/cmake ]; then
|
|
wget http://www.cmake.org/files/v3.1/cmake-3.1.3-Linux-x86_64.tar.gz
|
|
tar -xzf cmake-3.1.3-Linux-x86_64.tar.gz
|
|
mv cmake-3.1.3-Linux-x86_64 ci/cmake
|
|
fi
|