We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0361323 commit af85e14Copy full SHA for af85e14
.travis.yml
@@ -12,8 +12,14 @@ env:
12
- PATH="${HOME}/bin:${PATH}"
13
- SHELLCHECK_URL="https://s3.amazonaws.com/travis-blue-public/binaries/ubuntu/14.04/x86_64/shellcheck-0.4.5.tar.bz2"
14
15
+cache:
16
+ directories:
17
+ - "${HOME}/bin"
18
+
19
before_install:
- - curl -sSL "${SHELLCHECK_URL}" | tar --exclude 'SHA256SUMS' --strip-components=1 -C "${HOME}/bin" -xjf -;
20
+ - if ! shellcheck --version ; then
21
+ curl -sSL "${SHELLCHECK_URL}" | tar -C "${HOME}/bin" -xjf - ;
22
+ fi
23
- shellcheck --version
24
- gpg --keyserver hkp://keys.gnupg.net --recv-keys C4133165DF5EB4BAEABDADCACF1E7823C5339B59
25
0 commit comments