From e4e18f7122ae0a86ce89e62f55a242283611a3d8 Mon Sep 17 00:00:00 2001 From: Digital-Storm Date: Tue, 2 May 2017 17:03:22 -0400 Subject: [PATCH] Added support for mimetype application/x-xz Factorio now uses the mimetype application/x-xz for compressed experimental builds. Added the tar extraction command for this. --- lgsm/functions/core_dl.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index d6c9b58ca..606f0b442 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -60,6 +60,8 @@ fn_dl_extract(){ tarcmd=$(tar -zxf "${filedir}/${filename}" -C "${extractdir}") elif [ "${mime}" == "application/x-bzip2" ]; then tarcmd=$(tar -jxf "${filedir}/${filename}" -C "${extractdir}") + elif [ "${mime}" == "application/x-xz" ]; then + tarcmd=$(tar -xf "${filedir}/${filename}" -C "${extractdir}") elif [ "${mime}" == "application/zip" ]; then tarcmd=$(unzip -d "${extractdir}" "${filedir}/${filename}") fi