aboutsummaryrefslogtreecommitdiff
path: root/ci/before_cache.sh
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-02-07 09:27:51 +0100
committerGitHub <noreply@github.com>2023-02-07 09:27:51 +0100
commitadae075fcffe0b5d1a790c41c083b78db27ba80b (patch)
tree434dc49e3eeb07a510117b52ab6e8696b4405808 /ci/before_cache.sh
parent1391385ba9f83d32f3b6fc54587f03a1d34960d9 (diff)
downloadrneovim-adae075fcffe0b5d1a790c41c083b78db27ba80b.tar.gz
rneovim-adae075fcffe0b5d1a790c41c083b78db27ba80b.tar.bz2
rneovim-adae075fcffe0b5d1a790c41c083b78db27ba80b.zip
ci: remove unnecessary variables and functions (#22150)
Diffstat (limited to 'ci/before_cache.sh')
-rwxr-xr-xci/before_cache.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/ci/before_cache.sh b/ci/before_cache.sh
index 3daeb04793..d7405bab19 100755
--- a/ci/before_cache.sh
+++ b/ci/before_cache.sh
@@ -5,8 +5,6 @@ set -o pipefail
CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck source-path=SCRIPTDIR
-source "${CI_DIR}/common/build.sh"
-# shellcheck source-path=SCRIPTDIR
source "${CI_DIR}/common/suite.sh"
mkdir -p "${HOME}/.cache"
@@ -22,5 +20,5 @@ if ended_successfully && [ -d "${DEPS_BUILD_DIR}" ]; then
mv "${DEPS_BUILD_DIR}" "${CACHE_NVIM_DEPS_DIR}"
touch "${CACHE_MARKER}"
- echo "Updated third-party dependencies (timestamp: $(_stat "${CACHE_MARKER}"))."
+ echo "Updated third-party dependencies."
fi