Skip to content

Commit

Permalink
More debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
fwalch committed Jul 4, 2015
1 parent 90f4653 commit af40956
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .ci/common/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,15 @@ build_deps() {

mkdir -p "$(dirname "${DEPS_DIR}")"

if [[ -f "${CACHE_MARKER}" ]]; then
echo "Cache marker exists."
fi

# If there is a valid cache and we're not forced to recompile,
# use cached third-party dependencies.
if [[ -f "${CACHE_MARKER}" ]] && [[ "${BUILD_NVIM_DEPS}" != true ]]; then
echo "Using third-party dependencies from Travis's cache."
printf "Using third-party dependencies from Travis's cache (last updated: %s)." \
"$(stat -c '%y' "${CACHE_MARKER}")"
ln -Tnfs "${HOME}/.cache/nvim-deps" "${DEPS_DIR}"
return
fi
Expand Down

0 comments on commit af40956

Please sign in to comment.