From 933c53a67d04b9418e54286b1ff19f8b89655941 Mon Sep 17 00:00:00 2001 From: Nick Daly Date: Sat, 7 Nov 2009 22:41:08 -0600 Subject: Partially enabled PlayOnLinux. * Added PlayOnLinux to includes/autoinstall-includes.sh. * Clarified help-text in includes/generic-includes.sh. --- auto-installer.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'auto-installer.sh') diff --git a/auto-installer.sh b/auto-installer.sh index 586d974..2653863 100755 --- a/auto-installer.sh +++ b/auto-installer.sh @@ -30,6 +30,9 @@ source "$scriptdir/includes/cd-includes.sh" source "$scriptdir/includes/patch-includes.sh" source "$scriptdir/includes/autoinstall-includes.sh" source "$scriptdir/includes/cd-list.sh" +if [ "$PLAYONLINUX" ]; then + source "$PLAYONLINUX/lib/sources" > /dev/null 2>&1 +fi parseargs "$@" -- cgit v1.2.3 From 1d5ba1b928aaef6ee43955dd3d53f1b0df1329a2 Mon Sep 17 00:00:00 2001 From: Nick Daly Date: Tue, 2 Feb 2010 21:03:07 -0600 Subject: Installations are now saved in a simple registry. Also, quoted a few variables in auto-installer for fun. --- auto-installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'auto-installer.sh') diff --git a/auto-installer.sh b/auto-installer.sh index 2653863..d16f9f8 100755 --- a/auto-installer.sh +++ b/auto-installer.sh @@ -102,4 +102,4 @@ fi echo echo "$FULLGAMENAME installed successfully" -recommendcfg $CDNO $CDSTART +recommendcfg "$CDNO" "$CDSTART" -- cgit v1.2.3 From b74cac29e45f5e19049053b4394bb671718a7f08 Mon Sep 17 00:00:00 2001 From: Nick Daly Date: Sun, 7 Feb 2010 22:15:19 -0600 Subject: Added TODO, installing expansions is irrelevant of full base install. --- auto-installer.sh | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'auto-installer.sh') diff --git a/auto-installer.sh b/auto-installer.sh index d16f9f8..b97b764 100755 --- a/auto-installer.sh +++ b/auto-installer.sh @@ -64,14 +64,12 @@ if [ -n "$EXTRASCRIPT" ]; then fi fi -if [ "$FULLINSTALL" -eq 0 ]; then - if [ -n "$EXPANSIONSCRIPT" ]; then - if query "Do you want to install the files needed by the $EXPANSIONNAME expansion?" y; then - EXPANSIONINSTALL=1 - "${scriptdir}/${EXPANSIONSCRIPT}" -i "$TARGETDIR" -c "$CDMOUNT" 1>/dev/null || diequietly - else - EXPANSIONINSTALL=0 - fi +if [ -n "$EXPANSIONSCRIPT" ]; then + if query "Do you want to install the files needed by the $EXPANSIONNAME expansion?" y; then + EXPANSIONINSTALL=1 + "${scriptdir}/${EXPANSIONSCRIPT}" -i "$TARGETDIR" -c "$CDMOUNT" 1>/dev/null || diequietly + else + EXPANSIONINSTALL=0 fi fi -- cgit v1.2.3