From 61371573622772a6d71731670b826ca0f3bcdb53 Mon Sep 17 00:00:00 2001 From: gdbtek Date: Wed, 2 Nov 2016 15:53:51 -0700 Subject: [PATCH] bug fixes --- libraries/util.bash | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libraries/util.bash b/libraries/util.bash index 1d600e79..fc884e6a 100644 --- a/libraries/util.bash +++ b/libraries/util.bash @@ -365,6 +365,12 @@ function unzipRemoteFile() echo elif [[ "$(grep -i '^tar\.bz2$' <<< "${exExtension}")" != '' ]] then + # Install BZip2 + + installBZip2Command + + # Unzip + debug "\nDownloading '${downloadURL}'\n" curl -L "${downloadURL}" --retry 12 --retry-delay 5 | tar -C "${installFolder}" -j -x --strip 1 echo