From 40d676952b9fe42e73ae87600fa267975c2ececa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Navarrete=20Su=C3=A1rez?= Date: Mon, 29 Aug 2016 11:15:17 -0500 Subject: [PATCH] Fixes URL for unar As Google Code's URL for unar returns a 404 status code, this commit updates the download address to http://wakaba.c3.cx/releases/TheUnarchiver/unar1.10.1.zip (see https://github.com/xdissent/ievms/issues/236#issuecomment-242939186). This is a very old version of the software (current version is 3.11.1, so perhaps this should be updated too. Note: I was able to install unar using homebrew so maybe we should check for 'brew' and install from there. --- ievms.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ievms.sh b/ievms.sh index e440dff..4a66f0b 100755 --- a/ievms.sh +++ b/ievms.sh @@ -163,10 +163,10 @@ check_ext_pack() { # Download and install `unar` from Google Code. install_unar() { - local url="http://theunarchiver.googlecode.com/files/unar1.5.zip" + local url="http://wakaba.c3.cx/releases/TheUnarchiver/unar1.10.1.zip" local archive=`basename "${url}"` - download "unar" "${url}" "${archive}" "fbf544d1332c481d7d0f4e3433fbe53b" + download "unar" "${url}" "${archive}" "d548661e4b6c33512074df81e39ed874" unzip "${archive}" || fail "Failed to extract ${ievms_home}/${archive} to ${ievms_home}/, unzip command returned error code $?"