[Debian-l10n-commits] r1159 - /dl10n/trunk/pootle/sync-projects.d/10debconf

bubulle at users.alioth.debian.org bubulle at users.alioth.debian.org
Sun Aug 10 16:25:51 UTC 2008


Author: bubulle
Date: Sun Aug 10 16:25:51 2008
New Revision: 1159

URL: http://svn.debian.org/wsvn/?sc=1&rev=1159
Log:
Sort lists before doing the diff

Modified:
    dl10n/trunk/pootle/sync-projects.d/10debconf

Modified: dl10n/trunk/pootle/sync-projects.d/10debconf
URL: http://svn.debian.org/wsvn/dl10n/trunk/pootle/sync-projects.d/10debconf?rev=1159&op=diff
==============================================================================
--- dl10n/trunk/pootle/sync-projects.d/10debconf (original)
+++ dl10n/trunk/pootle/sync-projects.d/10debconf Sun Aug 10 16:25:51 2008
@@ -155,9 +155,9 @@
 # packages that dropped po-debconf support
 echo "  Finding added/removed files/directories..."
 cd $PROJECTDIR
-find . -mindepth 3 -maxdepth 3 -type d | grep -v \\.svn > /tmp/list-pootle
+find . -mindepth 3 -maxdepth 3 -type d | grep -v \\.svn | sort > /tmp/list-pootle
 cd $TEMPDIR
-find . -mindepth 3 -maxdepth 3 -type d > /tmp/list-tarball
+find . -mindepth 3 -maxdepth 3 -type d | sort > /tmp/list-tarball
 # We display the diff. It will be up to a human to delete/add
 # the relevant dirs in SVN (too dangerous)
 diff -d -I "lintian" -I "powertweak" /tmp/list-tarball  /tmp/list-pootle




More information about the Debian-l10n-commits mailing list