Author: jscinoz-guest Date: 2008-06-29 11:14:38 +0000 (Sun, 29 Jun 2008) New Revision: 7566
Modified: packages/trunk/quake3/debian/scripts/quake3 packages/trunk/quake3/debian/scripts/quake3-server Log: put the check-if-dir-exists-mkdir-and-cd thing on one line Modified: packages/trunk/quake3/debian/scripts/quake3 =================================================================== --- packages/trunk/quake3/debian/scripts/quake3 2008-06-29 11:11:31 UTC (rev 7565) +++ packages/trunk/quake3/debian/scripts/quake3 2008-06-29 11:14:38 UTC (rev 7566) @@ -34,8 +34,7 @@ # baseq3 creates botlib.log in cwd rather than ~/.q3a/baseq3 # this is a dirty hack to work around this issue -[ -d $HOME/.q3a/baseq3 ] || mkdir -p $HOME/.q3a/baseq3 -cd $HOME/.q3a/baseq3 +[ -d $HOME/.q3a/baseq3 ] || mkdir -p $HOME/.q3a/baseq3; cd $HOME/.q3a/baseq3 # Ready to rumble! Modified: packages/trunk/quake3/debian/scripts/quake3-server =================================================================== --- packages/trunk/quake3/debian/scripts/quake3-server 2008-06-29 11:11:31 UTC (rev 7565) +++ packages/trunk/quake3/debian/scripts/quake3-server 2008-06-29 11:14:38 UTC (rev 7566) @@ -34,8 +34,7 @@ # baseq3 creates botlib.log in cwd rather than ~/.q3a/baseq3 # this is a dirty hack to work around this issue -[ -d $HOME/.q3a/baseq3 ] || mkdir -p $HOME/.q3a/baseq3 -cd $HOME/.q3a/baseq3 +[ -d $HOME/.q3a/baseq3 ] || mkdir -p $HOME/.q3a/baseq3; cd $HOME/.q3a/baseq3 # Ready to rumble! _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

