diff options
author | Daniel Hahler <git@thequod.de> | 2019-06-26 20:06:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-26 20:06:40 +0200 |
commit | c62690ccc4206525cbd223040909d2b3dc5158d4 (patch) | |
tree | e14553918c737916e0246bae8791801da374d8ae /ci/common | |
parent | ac013d7147f13d95ee4ffa4eef6af1023ef0a0c2 (diff) | |
download | rneovim-c62690ccc4206525cbd223040909d2b3dc5158d4.tar.gz rneovim-c62690ccc4206525cbd223040909d2b3dc5158d4.tar.bz2 rneovim-c62690ccc4206525cbd223040909d2b3dc5158d4.zip |
ci: Travis: upgrade OSX images (10.1 => 10.2) (#10319)
* ci: Travis: upgrade OSX images (10.1 => 10.2)
* ci: nvim-deps: use `cp -a` [skip appveyor]
Symlinks should be preserved.
Ref: https://github.com/neovim/neovim/pull/10319#issuecomment-505410132
Diffstat (limited to 'ci/common')
-rw-r--r-- | ci/common/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/common/build.sh b/ci/common/build.sh index 7c27d61586..85b141de86 100644 --- a/ci/common/build.sh +++ b/ci/common/build.sh @@ -34,8 +34,8 @@ build_deps() { export CCACHE_RECACHE=1 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 -a "${HOME}/.cache/nvim-deps"/. "${DEPS_BUILD_DIR}" + cp -a "${HOME}/.cache/nvim-deps-downloads"/. "${DEPS_DOWNLOAD_DIR}" fi # Even if we're using cached dependencies, run CMake and make to |