wiimmfi_generic.sh: minor fixes and code review

This commit is contained in:
Christopher Roy Bratusek 2016-08-05 21:03:06 +02:00
parent f616363898
commit 3ca3901fd2

View File

@ -8,7 +8,7 @@ show_notes () {
echo -e \ echo -e \
"************************************************ "************************************************
${GAMENAME} ${GAME_NAME}
Patches Mario Kart Wii to use Wiimm's custom server Patches Mario Kart Wii to use Wiimm's custom server
@ -24,12 +24,12 @@ check_input_image_special () {
ask_input_image_wiimmfi ask_input_image_wiimmfi
echo -e "type ??????.wbfs (or ??????.iso):\n" echo -e "type ??????.wbfs (or ??????.iso):\n"
read ID read -r ID
if [[ -f ${PWD}/${ID} ]]; then if [[ -f ${PWD}/${ID} ]]; then
GAMEDIR=${PWD} GAMEDIR="${PWD}"
elif [[ -f ${PATCHIMAGE_WBFS_DIR}/${ID} ]]; then elif [[ -f ${PATCHIMAGE_WBFS_DIR}/${ID} ]]; then
GAMEDIR=${PATCHIMAGE_WBFS_DIR} GAMEDIR="${PATCHIMAGE_WBFS_DIR}"
else echo "invalid user input." else echo "invalid user input."
exit 75 exit 75
fi fi
@ -38,15 +38,15 @@ check_input_image_special () {
pi_action () { pi_action () {
cp -v ${GAMEDIR}/${ID} . 2>/dev/null cp -v "${GAMEDIR}"/"${ID}" . 2>/dev/null
${WIT} cp -o ${ID} --DEST "${PATCHIMAGE_GAME_DIR}"/${ID} \ "${WIT}" cp -o "${ID}" --DEST "${PATCHIMAGE_GAME_DIR}"/"${ID}" \
--update --psel=data --wiimmfi >/dev/null || \ --update --psel=data --wiimmfi >/dev/null || \
( echo "wiimmfi-ing the images failed." && exit 69 ) ( echo "wiimmfi-ing the images failed." && exit 69 )
rm -f ${ID} rm -f "${ID}"
if [[ ${PATCHIMAGE_COVER_DOWNLOAD} == TRUE ]]; then if [[ ${PATCHIMAGE_COVER_DOWNLOAD} == TRUE ]]; then
echo -e "\n*** Z) download_covers" echo -e "\n*** Z) download_covers"
download_covers ${ID/.*} download_covers "${ID/.*}"
fi fi
} }