mirror of
https://gitlab.com/Nanolx/patchimage.git
synced 2024-11-28 03:54:22 +01:00
properly handle .rar files
This commit is contained in:
parent
f8f0d51c42
commit
f298134185
@ -111,7 +111,11 @@ check_riivolution_patch () {
|
||||
if [[ ${DOWNLOAD_LINK} ]]; then
|
||||
if [[ ! -f ${RIIVOLUTION_ZIP} ]]; then
|
||||
wget ${DOWNLOAD_LINK} -O ${RIIVOLUTION_ZIP}
|
||||
unzip ${RIIVOLUTION_ZIP} >/dev/null
|
||||
if [[ ${RIIVOLUTION_ZIP} == *.zip ]]; then
|
||||
unzip ${RIIVOLUTION_ZIP} >/dev/null
|
||||
elif [[ ${RIIVOLUTION_ZIP} == *.rar ]]; then
|
||||
unrar x ${RIIVOLUTION_ZIP} >/dev/null
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "no download link for ${GAMENAME} available."
|
||||
@ -166,7 +170,7 @@ while [[ $xcount -lt $pcount ]]; do
|
||||
if [[ "${RIIVOLUTION}" == *.zip ]]; then
|
||||
unzip "${RIIVOLUTION}" >/dev/null
|
||||
elif [[ "${RIIVOLUTION}" == *.rar ]]; then
|
||||
unrar e "${RIIVOLUTION}" >/dev/null
|
||||
unrar x "${RIIVOLUTION}" >/dev/null
|
||||
fi
|
||||
else
|
||||
echo -e "Riivolution patch ${RIIVOLUTION} not found."
|
||||
|
Loading…
Reference in New Issue
Block a user