Skip to content

Commit

Permalink
travis: update shellcheck URL
Browse files Browse the repository at this point in the history
The latest build failed with this error:

```
You are downloading ShellCheck from an outdated URL!
Please update to the new URL:
https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz
For more information, see:
koalaman/shellcheck#1871
PS: Sorry for breaking your build :(
```
  • Loading branch information
carleng authored and osandov committed Jun 15, 2020
1 parent 0ce96f0 commit 48c1947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ addons:
before_install:
- sudo apt update || true
- sudo apt install -y gcc-multilib g++-multilib
- curl -L "https://storage.googleapis.com/shellcheck/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJ
- curl -L "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJ
- sudo cp shellcheck-stable/shellcheck /usr/local/bin/
- CFLAGS="-Werror"
- CXXFLAGS="-Werror"
Expand Down

0 comments on commit 48c1947

Please sign in to comment.