Author: jmtd-guest
Date: 2008-03-15 14:40:55 +0000 (Sat, 15 Mar 2008)
New Revision: 6075

Modified:
   packages/trunk/game-package/game-package
Log:
don't recurse into .svn dirs when checking supported

Modified: packages/trunk/game-package/game-package
===================================================================
--- packages/trunk/game-package/game-package    2008-03-15 14:40:04 UTC (rev 
6074)
+++ packages/trunk/game-package/game-package    2008-03-15 14:40:55 UTC (rev 
6075)
@@ -19,7 +19,7 @@
        printf "\tname\tdescription\n"
        printf "\t----\t-----------\n"
 
-       find $SUPPORTED -type f | grep -v 'swp$' | while read file; do
+       find $SUPPORTED -type f | grep -v '\.svn' | grep -v 'swp$' | while read 
file; do
                . $file
                printf "\t%s\t%s\n" "$SHORTNAME" "$LONGNAME"
        done


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

Reply via email to