r6075 - packages/trunk/game-package

Jon Dowland jmtd-guest at alioth.debian.org
Sat Mar 15 14:40:55 UTC 2008


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




More information about the Pkg-games-commits mailing list