mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 07:53:31 +01:00
f75854cd31
* Update cmake * Update cmake, make Travis use it * Enable all tests in a single command : make check * Make cmake flawlessly run with Debian jessie cmake 3.0.2 * Make Travis use our own cmake 3.0.2 compiled version * Typo in preferred version * Be sure travis will have gettext
8 lines
211 B
Bash
Executable File
8 lines
211 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.0-Linux-x86_64.tar.gz
|
|
tar -xzf ci/cmake-3.0.2-Linux-x86_64.tar.gz
|
|
mv cmake-3.0.2-Linux-x86_64 ci/cmake
|
|
fi
|