Skip to content

Commit

Permalink
.travis.yml: Fix shellcheck URL
Browse files Browse the repository at this point in the history
This patch fixes the following Travis build failure:

    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 :(

Signed-off-by: Bart Van Assche <bvanassche@acm.org>
  • Loading branch information
bvanassche committed Jun 9, 2020
1 parent bff70b0 commit de0dbb4
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 de0dbb4

Please sign in to comment.