[pisa-src] r2235 - trunk/tools/subversion/pre-commit-lib

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Thu, 01 Apr 2010 11:59:13 +0200

Author: biurrun
Date: Thu Apr  1 11:59:13 2010
New Revision: 2235

Log:
The kpisa directory is the kernel directory; filter the right one.

Modified:
   trunk/tools/subversion/pre-commit-lib

Modified: trunk/tools/subversion/pre-commit-lib
==============================================================================
--- trunk/tools/subversion/pre-commit-lib       Wed Mar 31 17:43:27 2010        
(r2234)
+++ trunk/tools/subversion/pre-commit-lib       Thu Apr  1 11:59:13 2010        
(r2235)
@@ -61,7 +61,7 @@
 
 
 check_tabs () {
-    for file in $($SVNLOOK changed -t "$TXN" "$REPOS" | cut -c 5- | egrep -v 
'Makefile.*|\.diff|\.patch|/kpisa/') ; do
+    for file in $($SVNLOOK changed -t "$TXN" "$REPOS" | cut -c 5- | egrep -v 
'Makefile.*|\.diff|\.patch|/kernel/') ; do
         if ! $SVNLOOK propget -t "$TXN" "$REPOS" svn:mime-type "$file" 2> 
/dev/null ; then
             if $SVNLOOK cat -t "$TXN" "$REPOS" "$file" | grep -e '     ' > 
/dev/null; then
                 echoerr

Other related posts:

  • » [pisa-src] r2235 - trunk/tools/subversion/pre-commit-lib - Diego Biurrun