Skip to content

Commit

Permalink
update shellcheck url
Browse files Browse the repository at this point in the history
shellcheck url has been changed and its breaking the build with the following 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 :(

Signed-off-by: Ma Xinjian <maxj.fnst@cn.fujitsu.com>
  • Loading branch information
Ma Xinjian committed Aug 28, 2020
1 parent 51684d9 commit 897e7b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operator/hack/verify-shellcheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ trap cleanup EXIT
cd "${TMP_DIR}" || exit
VERSION="shellcheck-stable"
DOWNLOAD_FILE="${VERSION}.${os}.x86_64.tar.xz"
wget https://storage.googleapis.com/shellcheck/"${DOWNLOAD_FILE}"
wget https://github.com/koalaman/shellcheck/releases/download/stable/"${DOWNLOAD_FILE}"
tar xf "${DOWNLOAD_FILE}"
cd "${VERSION}" || exit

Expand Down

0 comments on commit 897e7b3

Please sign in to comment.