From bc9e9f6d1fe42b568bb0183cd3fbb66fd2ce6655 Mon Sep 17 00:00:00 2001 From: FezVrasta Date: Fri, 26 Jun 2015 16:02:06 +0200 Subject: [PATCH] replaced wget with curl (and overwrite existing file if needed) --- netinstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netinstall.sh b/netinstall.sh index 8a4989a..1872701 100644 --- a/netinstall.sh +++ b/netinstall.sh @@ -8,7 +8,7 @@ channel=${2:-master} # if defined by 2nd argument install the defined version, o # Download and untar installation files cd /tmp -wget --no-cache https://github.com/FezVrasta/ark-server-tools/archive/${channel}.tar.gz +curl -s https://github.com/FezVrasta/ark-server-tools/archive/${channel}.tar.gz > ${channel}.tar.gz tar -zxvf ${channel}.tar.gz # Install ARK Server Tools