From 536c3d34bc3463f64eee2f28da0769a3653ecf52 Mon Sep 17 00:00:00 2001 From: Marcus Shawcroft Date: Wed, 10 Jul 2019 16:49:55 +0100 Subject: [PATCH] Fix broken rat install (#3527) http://www.trieuvan.com/apache//creadur/apache-rat-0.12/apache-rat-0.12-bin.tar.gz gives a 404 so point the installer at archive.apache.org hopefull that is more reliable. --- docker/install/ubuntu_install_rat.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/install/ubuntu_install_rat.sh b/docker/install/ubuntu_install_rat.sh index e2f3244e6..40fff85b3 100755 --- a/docker/install/ubuntu_install_rat.sh +++ b/docker/install/ubuntu_install_rat.sh @@ -21,7 +21,7 @@ set -u set -o pipefail cd /tmp -wget -q http://www.trieuvan.com/apache//creadur/apache-rat-0.12/apache-rat-0.12-bin.tar.gz +wget -q https://archive.apache.org/dist/creadur/apache-rat-0.12/apache-rat-0.12-bin.tar.gz tar xf apache-rat-0.12-bin.tar.gz mv apache-rat-0.12/apache-rat-0.12.jar /bin/apache-rat.jar rm -rf apache-rat-0.12-bin.tar.gz apache-rat-0.12 -- 2.34.1