mirror of
https://gitlab.com/Nanolx/patchimage.git
synced 2024-11-24 10:09:22 +01:00
fixup --patch cmd flag
This commit is contained in:
parent
38c46c233b
commit
8936430724
@ -512,7 +512,7 @@ while [[ $xcount -lt $pcount ]]; do
|
||||
|
||||
--riivolution=* )
|
||||
RIIVOLUTION="${1/*=}"
|
||||
if [[ -e "${RIIVOLUTION}" ]]; then
|
||||
if [[ -f "${RIIVOLUTION}" ]]; then
|
||||
"${UNP}" "${RIIVOLUTION}" >/dev/null
|
||||
else
|
||||
echo -e "Riivolution patch ${RIIVOLUTION} not found."
|
||||
@ -522,10 +522,10 @@ while [[ $xcount -lt $pcount ]]; do
|
||||
|
||||
--patch=* )
|
||||
PATCH="${1/*=}"
|
||||
if [[ -e "${PATCH}" ]]; then
|
||||
${UNP} "${PATCH}" >/dev/null
|
||||
if [[ -f "${PATCH}" ]]; then
|
||||
PATCH="${PATCH}"
|
||||
else
|
||||
echo -e "PATCH patch ${PATCH} not found."
|
||||
echo -e "IPS/PPF patch ${PATCH} not found."
|
||||
exit 21
|
||||
fi
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user