From 0df9ccf0f4a5f9595eb4c760e8bfe37cec83da16 Mon Sep 17 00:00:00 2001 From: Corey Newton Date: Mon, 27 Oct 2025 07:00:15 -0700 Subject: [PATCH] switch install script from HTTP to HTTPS for tarball Rather than verifying signatures, switching to "https://ftp..." removes any insecure connections entirely. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 9d4934f..fc774f4 100644 --- a/install.sh +++ b/install.sh @@ -5,7 +5,7 @@ set -e ADVCPMV_VERSION=${1:-0.9} CORE_UTILS_VERSION=${2:-9.5} -curl -LO http://ftp.gnu.org/gnu/coreutils/coreutils-$CORE_UTILS_VERSION.tar.xz +curl -LO https://ftp.gnu.org/gnu/coreutils/coreutils-$CORE_UTILS_VERSION.tar.xz tar xvJf coreutils-$CORE_UTILS_VERSION.tar.xz rm coreutils-$CORE_UTILS_VERSION.tar.xz (