[Debian-l10n-commits] r1080 - /dl10n/trunk/pootle/sync-projects.d/10debconf
bubulle at users.alioth.debian.org
bubulle at users.alioth.debian.org
Wed Jul 23 15:34:36 UTC 2008
Author: bubulle
Date: Wed Jul 23 15:34:35 2008
New Revision: 1080
URL: http://svn.debian.org/wsvn/?sc=1&rev=1080
Log:
Double escaping to prevent reporting .svn directories as differences
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=1080&op=diff
==============================================================================
--- dl10n/trunk/pootle/sync-projects.d/10debconf (original)
+++ dl10n/trunk/pootle/sync-projects.d/10debconf Wed Jul 23 15:34:35 2008
@@ -151,11 +151,11 @@
echo " Committing to SVN"
cd $PROJECTDIR
echo " Adding new directories"
-# find . -type d | grep -v \.svn | xargs svn add -N
+# find . -type d | grep -v \\.svn | xargs svn add -N 2>/dev/null
echo " Adding PO files"
-# find . -type f -name \*.po | grep -v \.svn | xargs svn add
+# find . -type f -name \*.po | grep -v \\.svn | xargs svn add 2>/dev/null
echo " Adding POT files"
-# find . -type f -name templates.pot | grep -v \.svn | xargs svn add
+# find . -type f -name templates.pot | grep -v \\.svn | xargs svn add 2>/dev/null
# Now we need to find out what directories are in $PROJECTDIR but
# aren't anymore in the tarball. Most of the time, this will be
More information about the Debian-l10n-commits
mailing list