From 42a982a4a54681ae21c4a870b8a7ed5ed32a3c32 Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Tue, 24 Jan 2017 13:23:38 +0100 Subject: [PATCH] fix(ci): Cache cmake archive --- common/travis/install_cmake.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/travis/install_cmake.sh b/common/travis/install_cmake.sh index 32efb1b4..fae07510 100755 --- a/common/travis/install_cmake.sh +++ b/common/travis/install_cmake.sh @@ -1,6 +1,6 @@ #!/bin/bash if [ -z "$(ls -A "${DEPS_DIR}/cmake/bin" 2>/dev/null)" ]; then - mkdir -p cmake && travis_retry wget --no-check-certificate -O - "${CMAKE_URL}" | tar --strip-components=1 -xz -C cmake + mkdir -p "${DEPS_DIR}/cmake" && travis_retry wget --no-check-certificate -O - "${CMAKE_URL}" | tar --strip-components=1 -xz -C "${DEPS_DIR}/cmake" fi export PATH="${DEPS_DIR}/cmake/bin:${PATH}"