From: Omar Sandoval Date: Mon, 15 Jun 2020 22:33:21 +0000 (-0700) Subject: travis: update shellcheck URL X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=207db28042a737229fe3bb78576a4980b1924c8f;p=users%2Fsagi%2Fblktests.git travis: update shellcheck URL 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: https://github.com/koalaman/shellcheck/issues/1871 PS: Sorry for breaking your build :( ``` --- diff --git a/.travis.yml b/.travis.yml index 81c83e7..3afa9a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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"