You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zg...@apache.org on 2020/08/14 05:55:13 UTC

[hbase] branch branch-2.2 updated: HBASE-24879 Fix the shellcheck download url (#2257)

This is an automated email from the ASF dual-hosted git repository.

zghao pushed a commit to branch branch-2.2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.2 by this push:
     new 588e902  HBASE-24879 Fix the shellcheck download url (#2257)
588e902 is described below

commit 588e902fcb4a0ac8936f7df0ee9459af516aef69
Author: Guanghao Zhang <zg...@apache.org>
AuthorDate: Fri Aug 14 13:54:59 2020 +0800

    HBASE-24879 Fix the shellcheck download url (#2257)
    
    update where we pull binaries from https://github.com/koalaman/shellcheck/issues/1871
    
    Signed-off-by: Sean Busbey <bu...@apache.org>
---
 dev-support/docker/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-support/docker/Dockerfile b/dev-support/docker/Dockerfile
index d1c6f60..5c27ced 100644
--- a/dev-support/docker/Dockerfile
+++ b/dev-support/docker/Dockerfile
@@ -46,7 +46,7 @@ ENV FINDBUGS_HOME /usr
 ###
 RUN mkdir -p /opt/shellcheck && \
     curl -L -s -S \
-        https://storage.googleapis.com/shellcheck/shellcheck-stable.linux.x86_64.tar.xz \
+        https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz \
         -o /opt/shellcheck.tar.xz && \
     tar xJf /opt/shellcheck.tar.xz --strip-components 1 -C /opt/shellcheck && \
     ln -s /opt/shellcheck/shellcheck /usr/bin/shellcheck && \