summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.me.uk>2009-04-16 12:07:45 +0100
committerNick White <git@njw.me.uk>2009-04-16 12:07:45 +0100
commit7560300c9a9779802c73bcec2a78c54ea070f16d (patch)
treef275dd3b4ed1fe2a54be806ce728f9621e797162
parent1c9428ba23149f6d07556f658270db45ddcd9ff6 (diff)
downloadgemrb-gameinstallers-7560300c9a9779802c73bcec2a78c54ea070f16d.tar.bz2
gemrb-gameinstallers-7560300c9a9779802c73bcec2a78c54ea070f16d.zip
Fixed bug detecting if there are any extras to install
-rwxr-xr-xauto-installer.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/auto-installer.sh b/auto-installer.sh
index 822fc61..a54e107 100755
--- a/auto-installer.sh
+++ b/auto-installer.sh
@@ -89,7 +89,7 @@ echo "$FULLGAMENAME detected, installing"
"$scriptdir/$MINSCRIPT" -i "$TARGETDIR" -c "$CDMOUNT" 1>/dev/null || diequietly
-if [ -n "$scriptdir/$EXTRASCRIPT" ]; then
+if [ -n "$EXTRASCRIPT" ]; then
if query "Do you want to do a full install, so the CDs will not be needed again?" y; then
FULLINSTALL=1
"$scriptdir/$EXTRASCRIPT" -i "$TARGETDIR" -c "$CDMOUNT" 1>/dev/null || diequietly