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