diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-08-12 12:32:01 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-08-12 12:38:38 +0200 |
commit | 47f9ab46357e7f0cbd0c7f475ade01c2c26aac47 (patch) | |
tree | fdcec53d6f866ca65336e24aa9313cc7f9e8c2f9 | |
parent | 22311457ab60be9335f8e630c8b794340d39e466 (diff) | |
download | rneovim-47f9ab46357e7f0cbd0c7f475ade01c2c26aac47.tar.gz rneovim-47f9ab46357e7f0cbd0c7f475ade01c2c26aac47.tar.bz2 rneovim-47f9ab46357e7f0cbd0c7f475ade01c2c26aac47.zip |
CI/travis: fix restore from cache
a36938500988 fixed this for "~/.cache/nvim-deps/", but strangely not for
"~/.cache/nvim-deps-downloads/".
ref a36938500988
ref #8316
ref #8281
Seen in https://travis-ci.org/neovim/neovim/jobs/414982972 :
Using third-party dependencies from Travis cache (last update: Aug 11 23:00:15 2018).
cp: /Users/travis/build/neovim/neovim/deps-downloads/nvim-deps-downloads/…/nvim-deps-downloads/libvterm/a9c7c6fd20fa35e0ad3e0e98901ca12dfca9c25c.tar.gz:
name too long (not copied)
-rw-r--r-- | ci/common/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/common/build.sh b/ci/common/build.sh index a3cf64d47a..f4313578c9 100644 --- a/ci/common/build.sh +++ b/ci/common/build.sh @@ -35,7 +35,7 @@ build_deps() { elif test -f "${CACHE_MARKER}" ; 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-downloads" "${DEPS_DOWNLOAD_DIR}" + cp -r "${HOME}/.cache/nvim-deps-downloads"/. "${DEPS_DOWNLOAD_DIR}" fi # Even if we're using cached dependencies, run CMake and make to |