[Pkg-voip-commits] r2395 - /

George Danchev danchev-guest at costa.debian.org
Sun Sep 17 09:03:43 UTC 2006


Author: danchev-guest
Date: 2006-09-17 09:03:42 +0000 (Sun, 17 Sep 2006)
New Revision: 2395

Added:
   checkwatches.bash
Log:
check watch files script - shamelessly from pkg-ruby-extras team

Added: checkwatches.bash
===================================================================
--- checkwatches.bash	                        (rev 0)
+++ checkwatches.bash	2006-09-17 09:03:42 UTC (rev 2395)
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+set -e 
+for i in *; do
+	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
+		echo "No watch file found."
+	else
+		uscan --no-download || true
+	fi
+	cd ../..
+done


Property changes on: checkwatches.bash
___________________________________________________________________
Name: svn:executable
   + *




More information about the Pkg-voip-commits mailing list