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

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

Modified: packages/trunk/urbanterror/debian/scripts/urbanterror
===================================================================
--- packages/trunk/urbanterror/debian/scripts/urbanterror       2008-06-30 
04:42:52 UTC (rev 7585)
+++ packages/trunk/urbanterror/debian/scripts/urbanterror       2008-06-30 
04:42:53 UTC (rev 7586)
@@ -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/urbanterror/debian/scripts/urbanterror-server
===================================================================
--- packages/trunk/urbanterror/debian/scripts/urbanterror-server        
2008-06-30 04:42:52 UTC (rev 7585)
+++ packages/trunk/urbanterror/debian/scripts/urbanterror-server        
2008-06-30 04:42:53 UTC (rev 7586)
@@ -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


_______________________________________________
Pkg-games-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

Reply via email to