r7585 - packages/trunk/worldofpadman/debian/scripts

Jack Coulter jscinoz-guest at alioth.debian.org
Mon Jun 30 04:42:52 UTC 2008


Author: jscinoz-guest
Date: 2008-06-30 04:42:52 +0000 (Mon, 30 Jun 2008)
New Revision: 7585

Modified:
   packages/trunk/worldofpadman/debian/scripts/worldofpadman
   packages/trunk/worldofpadman/debian/scripts/worldofpadman-server
Log:
Changed launcher scripts to match any arg starting with +, rather than just +set and +connect

Modified: packages/trunk/worldofpadman/debian/scripts/worldofpadman
===================================================================
--- packages/trunk/worldofpadman/debian/scripts/worldofpadman	2008-06-30 03:24:06 UTC (rev 7584)
+++ packages/trunk/worldofpadman/debian/scripts/worldofpadman	2008-06-30 04:42:52 UTC (rev 7585)
@@ -16,7 +16,7 @@
 # catch them here, to avoid accidentally launching the binary.
 
 while [ "$1" != "" ]; do {
-	if [ "$1" = "+set" -o "$1" = "+connect" ]; then
+	if [ ${1:0:1} = "+" ]; then
 		break;
 	fi
 	case "$1" in

Modified: packages/trunk/worldofpadman/debian/scripts/worldofpadman-server
===================================================================
--- packages/trunk/worldofpadman/debian/scripts/worldofpadman-server	2008-06-30 03:24:06 UTC (rev 7584)
+++ packages/trunk/worldofpadman/debian/scripts/worldofpadman-server	2008-06-30 04:42:52 UTC (rev 7585)
@@ -16,7 +16,7 @@
 # catch them here, to avoid accidentally launching the binary.
 
 while [ "$1" != "" ]; do {
-	if [ "$1" = "+set" -o "$1" = "+connect" ]; then
+	if [ ${1:0:1} = "+" ]; then
 		break;
 	fi
 	case "$1" in




More information about the Pkg-games-commits mailing list