From 32275808ba9c066e3d9c473884cb455399275ced Mon Sep 17 00:00:00 2001 From: Navneet Aman Date: Tue, 12 Apr 2022 21:38:33 +0530 Subject: [PATCH] replace wget with curl in install.sh --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index e4a7544..ff18cbc 100644 --- a/install.sh +++ b/install.sh @@ -5,12 +5,12 @@ set -e ADVCPMV_VERSION=${1:-0.9} CORE_UTILS_VERSION=${2:-9.0} -wget http://ftp.gnu.org/gnu/coreutils/coreutils-$CORE_UTILS_VERSION.tar.xz +curl -LO http://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 ( cd coreutils-$CORE_UTILS_VERSION/ - wget https://raw.githubusercontent.com/jarun/advcpmv/master/advcpmv-$ADVCPMV_VERSION-$CORE_UTILS_VERSION.patch + curl -LO https://raw.githubusercontent.com/jarun/advcpmv/master/advcpmv-$ADVCPMV_VERSION-$CORE_UTILS_VERSION.patch patch -p1 -i advcpmv-$ADVCPMV_VERSION-$CORE_UTILS_VERSION.patch ./configure make