From 3ca3901fd2da04277e6646955bd50241e3b263a7 Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Fri, 5 Aug 2016 21:03:06 +0200 Subject: [PATCH] wiimmfi_generic.sh: minor fixes and code review --- script.d/wiimmfi_generic.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/script.d/wiimmfi_generic.sh b/script.d/wiimmfi_generic.sh index a50e6ea..2c1d5dc 100644 --- a/script.d/wiimmfi_generic.sh +++ b/script.d/wiimmfi_generic.sh @@ -8,7 +8,7 @@ show_notes () { echo -e \ "************************************************ -${GAMENAME} +${GAME_NAME} Patches Mario Kart Wii to use Wiimm's custom server @@ -24,12 +24,12 @@ check_input_image_special () { ask_input_image_wiimmfi echo -e "type ??????.wbfs (or ??????.iso):\n" - read ID + read -r ID if [[ -f ${PWD}/${ID} ]]; then - GAMEDIR=${PWD} + GAMEDIR="${PWD}" elif [[ -f ${PATCHIMAGE_WBFS_DIR}/${ID} ]]; then - GAMEDIR=${PATCHIMAGE_WBFS_DIR} + GAMEDIR="${PATCHIMAGE_WBFS_DIR}" else echo "invalid user input." exit 75 fi @@ -38,15 +38,15 @@ check_input_image_special () { pi_action () { - cp -v ${GAMEDIR}/${ID} . 2>/dev/null - ${WIT} cp -o ${ID} --DEST "${PATCHIMAGE_GAME_DIR}"/${ID} \ + cp -v "${GAMEDIR}"/"${ID}" . 2>/dev/null + "${WIT}" cp -o "${ID}" --DEST "${PATCHIMAGE_GAME_DIR}"/"${ID}" \ --update --psel=data --wiimmfi >/dev/null || \ ( echo "wiimmfi-ing the images failed." && exit 69 ) - rm -f ${ID} + rm -f "${ID}" if [[ ${PATCHIMAGE_COVER_DOWNLOAD} == TRUE ]]; then echo -e "\n*** Z) download_covers" - download_covers ${ID/.*} + download_covers "${ID/.*}" fi }