Skip to content

Commit 3227580

Browse files
committed
replace wget with curl in install.sh
1 parent a047797 commit 3227580

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ set -e
55
ADVCPMV_VERSION=${1:-0.9}
66
CORE_UTILS_VERSION=${2:-9.0}
77

8-
wget http://ftp.gnu.org/gnu/coreutils/coreutils-$CORE_UTILS_VERSION.tar.xz
8+
curl -LO http://ftp.gnu.org/gnu/coreutils/coreutils-$CORE_UTILS_VERSION.tar.xz
99
tar xvJf coreutils-$CORE_UTILS_VERSION.tar.xz
1010
rm coreutils-$CORE_UTILS_VERSION.tar.xz
1111
(
1212
cd coreutils-$CORE_UTILS_VERSION/
13-
wget https://raw.githubusercontent.com/jarun/advcpmv/master/advcpmv-$ADVCPMV_VERSION-$CORE_UTILS_VERSION.patch
13+
curl -LO https://raw.githubusercontent.com/jarun/advcpmv/master/advcpmv-$ADVCPMV_VERSION-$CORE_UTILS_VERSION.patch
1414
patch -p1 -i advcpmv-$ADVCPMV_VERSION-$CORE_UTILS_VERSION.patch
1515
./configure
1616
make

0 commit comments

Comments
 (0)