diff options
author | James McCoy <jamessan@jamessan.com> | 2020-11-13 11:22:24 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2020-11-13 13:36:58 -0500 |
commit | eb96bec4bbbf55266b89d50a36a85b8caaa9a9fb (patch) | |
tree | c6c126e2ee40e210af603f645f9e331aa45fa034 | |
parent | c7443b82a9be093877c8e9e53eb079c39df25f7f (diff) | |
download | rneovim-eb96bec4bbbf55266b89d50a36a85b8caaa9a9fb.tar.gz rneovim-eb96bec4bbbf55266b89d50a36a85b8caaa9a9fb.tar.bz2 rneovim-eb96bec4bbbf55266b89d50a36a85b8caaa9a9fb.zip |
ci/before_script.sh: Remove early exit for lint job
lualint requires building dependencies, so allow the job to take
advantage of the cache.
-rwxr-xr-x | ci/before_script.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ci/before_script.sh b/ci/before_script.sh index 1759dbe942..8bab1c4e17 100755 --- a/ci/before_script.sh +++ b/ci/before_script.sh @@ -3,10 +3,6 @@ set -e set -o pipefail -if [[ "${CI_TARGET}" == lint ]]; then - exit -fi - CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" source "${CI_DIR}/common/build.sh" |