From e734f3b8b78c471ad40ecf762c12fbdf4b96a0da Mon Sep 17 00:00:00 2001 From: tv Date: Wed, 20 May 2015 16:39:28 +0200 Subject: [PATCH] infest: s/wget/curl/ --- infest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infest b/infest index 4b65d0054..814b4cbd0 100755 --- a/infest +++ b/infest @@ -112,9 +112,9 @@ infest_centos7_64bit() { #curl https://nixos.org/nix/install | sh nix_tar=$nix_basename.tar.bz2 if ! echo $nix_sha256 $nix_tar | sha256sum -c; then - wget -c $nix_url || : + curl -O -C - $nix_url || : if ! echo $nix_sha256 $nix_tar | sha256sum -c; then - wget $nix_url || : + curl -O $nix_url || : if ! echo $nix_sha256 $nix_tar | sha256sum -c; then echo $0: cannot download $nix_url >&2 exit 5