remove some more ./

This commit is contained in:
Christopher Roy Bratusek 2013-06-20 21:03:40 +02:00
parent 71d41890ef
commit 475c090fdb
4 changed files with 10 additions and 4 deletions

View File

@ -25,6 +25,10 @@ case ${GAME} in
source script.d/newersummersun.sh
;;
C | ASMBW | AnotherSMBW )
source script.d/anothersmb.sh
;;
* )
echo -e "specified Game ${GAME} not recognized"
exit 1

View File

@ -33,7 +33,9 @@ patchimage.sh
Enter Letter for the Game you want to create:
A NewerSMB
B Newer Summer Sun"
B Newer Summer Sun
C AnotherSMB
"
read GAME
@ -43,7 +45,7 @@ download_soundtrack () {
if [[ ${SOUNDTRACK} ]]; then
if [[ ${SOUNDTRACK_LINK} ]]; then
wget ${SOUNDTRACK_LINK} -O ./${SOUNDTRACK_ZIP}
wget "${SOUNDTRACK_LINK}" -O ${SOUNDTRACK_ZIP}
exit 0
else
echo -e "no soundtrack for ${GAME} available."

View File

@ -1,6 +1,6 @@
#!/bin/bash
WORKDIR=./nsmb.d
WORKDIR=nsmb.d
DOL=${WORKDIR}/sys/main.dol
DOWNLOAD_LINK="http://newerteam.com/getNewerFile.php"
SOUNDTRACK_LINK="http://dirbaio.net/newer/NewerSoundtrack.zip"

View File

@ -1,6 +1,6 @@
#!/bin/bash
WORKDIR=./nsmb.d
WORKDIR=nsmb.d
DOL=${WORKDIR}/sys/main.dol
DOWNLOAD_LINK="http://dirbaio.net/newer/Newer_Summer_Sun.zip"
SOUNDTRACK_LINK="http://dirbaio.net/newer/Newer_Summer_Sun_Soundtrack.zip"