[DRE-commits] r4159 - trunk/tools

Paul van Tilburg paulvt at alioth.debian.org
Fri Sep 18 16:55:31 UTC 2009


Author: paulvt
Date: 2009-09-18 16:55:31 +0000 (Fri, 18 Sep 2009)
New Revision: 4159

Modified:
   trunk/tools/checkwatches.bash
Log:
Update the script for the new SVN structure.

Modified: trunk/tools/checkwatches.bash
===================================================================
--- trunk/tools/checkwatches.bash	2009-09-18 16:51:24 UTC (rev 4158)
+++ trunk/tools/checkwatches.bash	2009-09-18 16:55:31 UTC (rev 4159)
@@ -5,16 +5,10 @@
 	if [ ! -d $i ]; then
 		continue
 	fi
-	if [ ! -d $i/trunk ]; then
-		echo "** $i doesn't look like a correct package tree."
-		continue
-	fi
 	echo "** $i..."
-	cd $i/trunk
-	if [ ! -f debian/watch ]; then
+	if [ ! -f $i/debian/watch ]; then
 		echo "No watch file found."
 	else
-		uscan --no-download || true
+		uscan --no-download $i || true
 	fi
-	cd ../..
 done




More information about the Pkg-ruby-extras-commits mailing list