We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a047797 commit 3227580Copy full SHA for 3227580
install.sh
@@ -5,12 +5,12 @@ set -e
5
ADVCPMV_VERSION=${1:-0.9}
6
CORE_UTILS_VERSION=${2:-9.0}
7
8
-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
9
tar xvJf coreutils-$CORE_UTILS_VERSION.tar.xz
10
rm coreutils-$CORE_UTILS_VERSION.tar.xz
11
(
12
cd coreutils-$CORE_UTILS_VERSION/
13
- 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
14
patch -p1 -i advcpmv-$ADVCPMV_VERSION-$CORE_UTILS_VERSION.patch
15
./configure
16
make
0 commit comments