Repository: hadoop Updated Branches: refs/heads/HADOOP-12111 2c4208f2b -> 715f2b6fc
HADOOP-12340. test-patch docker mode fails in downloading findbugs with curl (Kengo Seki via aw) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/715f2b6f Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/715f2b6f Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/715f2b6f Branch: refs/heads/HADOOP-12111 Commit: 715f2b6fc4244692dbf843366087a57f6dd7647a Parents: 2c4208f Author: Allen Wittenauer <[email protected]> Authored: Tue Aug 25 09:12:47 2015 -0700 Committer: Allen Wittenauer <[email protected]> Committed: Tue Aug 25 09:12:47 2015 -0700 ---------------------------------------------------------------------- dev-support/test-patch-docker/Dockerfile-startstub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/715f2b6f/dev-support/test-patch-docker/Dockerfile-startstub ---------------------------------------------------------------------- diff --git a/dev-support/test-patch-docker/Dockerfile-startstub b/dev-support/test-patch-docker/Dockerfile-startstub index c49b589..560d751 100644 --- a/dev-support/test-patch-docker/Dockerfile-startstub +++ b/dev-support/test-patch-docker/Dockerfile-startstub @@ -62,7 +62,7 @@ RUN apt-get install -y oracle-java8-installer # Install findbugs ###### RUN mkdir -p /opt/findbugs && \ - curl https://sourceforge.net/projects/findbugs/files/findbugs/3.0.1/findbugs-noUpdateChecks-3.0.1.tar.gz/download \ + curl -L https://sourceforge.net/projects/findbugs/files/findbugs/3.0.1/findbugs-noUpdateChecks-3.0.1.tar.gz/download \ -o /opt/findbugs.tar.gz && \ tar xzf /opt/findbugs.tar.gz --strip-components 1 -C /opt/findbugs ENV FINDBUGS_HOME /opt/findbugs
