diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-10-10 19:03:51 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-10-24 18:37:38 -0400 |
commit | fafa064d2a8dbe24303545ab582ec84cde52ab5b (patch) | |
tree | 74585fa1f005faac823025deecb23655d0b53a4c /ci/test | |
parent | deb2327b435925c6a39ca654a79283b8eb6aeb86 (diff) |
ci: Remove ccache requirement on the host
ccache is only needed to create the cache dir on the host, if it didn't
already exist. The same can be achieved with mkdir, so just use that
instead.
Diffstat (limited to 'ci/test')
-rwxr-xr-x | ci/test/04_install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/04_install.sh b/ci/test/04_install.sh index d0831a4c13..df07b8fe5c 100755 --- a/ci/test/04_install.sh +++ b/ci/test/04_install.sh @@ -33,7 +33,7 @@ if [ "$TRAVIS_OS_NAME" == "osx" ]; then fi mkdir -p "${BASE_SCRATCH_DIR}" -ccache echo "Creating ccache dir if it didn't already exist" +mkdir -p "${CCACHE_DIR}" if [ ! -d ${DIR_QA_ASSETS} ]; then git clone https://github.com/bitcoin-core/qa-assets ${DIR_QA_ASSETS} |