Browse Source

added 2nd mime for gzip

pull/820/merge
Daniel Gibbs 9 years ago
parent
commit
341db2e034
  1. 2
      lgsm/functions/core_dl.sh

2
lgsm/functions/core_dl.sh

@ -54,7 +54,7 @@ echo -ne "extracting ${filename}..."
fn_scriptlog "extracting download"
mime=$(file -b --mime-type "${filedir}/${filename}")
if [ "${mime}" == "application/gzip" ]; then
if [ "${mime}" == "application/gzip" ]||[ "${mime}" == "application/x-gzip" ]; then
tarcmd=$(tar -zxf "${filedir}/${filename}" -C "${extractdir}")
elif [ "${mime}" == "application/x-bzip2" ]; then
tarcmd=$(tar -jxf "${filedir}/${filename}" -C "${extractdir}")

Loading…
Cancel
Save