diff options
author | Nick White <git@njw.me.uk> | 2009-04-16 12:07:45 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2009-04-16 12:07:45 +0100 |
commit | 7560300c9a9779802c73bcec2a78c54ea070f16d (patch) | |
tree | f275dd3b4ed1fe2a54be806ce728f9621e797162 | |
parent | 1c9428ba23149f6d07556f658270db45ddcd9ff6 (diff) | |
download | gemrb-gameinstallers-7560300c9a9779802c73bcec2a78c54ea070f16d.tar.bz2 gemrb-gameinstallers-7560300c9a9779802c73bcec2a78c54ea070f16d.zip |
Fixed bug detecting if there are any extras to install
-rwxr-xr-x | auto-installer.sh | 2 |
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 |