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 615ff4e commit eafa747Copy full SHA for eafa747
ci/lint/04_install.sh
@@ -11,11 +11,13 @@ if [ "$TRAVIS_OS_NAME" == "osx" ]; then
11
travis_retry brew update
12
travis_retry brew install shellcheck
13
travis_retry brew upgrade python
14
- export PATH="$(brew --prefix python)/bin:$PATH"
+ PATH="$(brew --prefix python)/bin:$PATH"
15
+ export PATH
16
else
17
SHELLCHECK_VERSION=v0.6.0
18
travis_retry curl --silent "https://storage.googleapis.com/shellcheck/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/
- export PATH="/tmp/shellcheck-${SHELLCHECK_VERSION}:${PATH}"
19
+ PATH="/tmp/shellcheck-${SHELLCHECK_VERSION}:${PATH}"
20
21
fi
22
23
travis_retry pip3 install codespell==1.15.0
0 commit comments