ci/travis: fix restore from cache #8316

closes #8281
This commit is contained in:
Srikanth M 2018-04-25 01:13:13 +05:30 committed by Justin M. Keyes
parent ad60927d09
commit a369385009
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ build_deps() {
# Use cached dependencies if $CACHE_MARKER exists.
if test -f "${CACHE_MARKER}" && ! test "${CACHE_ENABLE}" = "false" ; then
echo "Using third-party dependencies from Travis cache (last update: $(_stat "${CACHE_MARKER}"))."
cp -r "${HOME}/.cache/nvim-deps" "${DEPS_BUILD_DIR}"
cp -r "${HOME}/.cache/nvim-deps"/. "${DEPS_BUILD_DIR}"
cp -r "${HOME}/.cache/nvim-deps-downloads" "${DEPS_DOWNLOAD_DIR}"
fi