Skip to content

Commit 0361323

Browse files
committed
Modified TravisCI script in order to get the latest Shellcheck
1 parent 832d6b2 commit 0361323

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@ env:
1313
- SHELLCHECK_URL="https://s3.amazonaws.com/travis-blue-public/binaries/ubuntu/14.04/x86_64/shellcheck-0.4.5.tar.bz2"
1414

1515
before_install:
16-
- if ! shellcheck --version &>/dev/null; then
17-
curl -sSL "https://s3.amazonaws.com/travis-blue-public/binaries/ubuntu/14.04/x86_64/shellcheck-0.4.5.tar.bz2"
18-
| tar --exclude 'SHA256SUMS' --strip-components=1 -C "${HOME}/bin" -xjf -;
19-
fi
16+
- curl -sSL "${SHELLCHECK_URL}" | tar --exclude 'SHA256SUMS' --strip-components=1 -C "${HOME}/bin" -xjf -;
2017
- shellcheck --version
2118
- gpg --keyserver hkp://keys.gnupg.net --recv-keys C4133165DF5EB4BAEABDADCACF1E7823C5339B59
2219

0 commit comments

Comments
 (0)