[geeklog-jp commit] r931 - trunk/tools

Back to archive index

codes****@googl***** codes****@googl*****
2008年 10月 12日 (日) 01:03:36 JST


Author: tacahi
Date: Sat Oct 11 09:03:09 2008
New Revision: 931

Modified:
    trunk/tools/check-files.sh

Log:
対象のディレクトリを省略したり、ドットやドットで始まる相対パスで指定した場合 
に、まともに動作していなかった問題を修正しました(と、思う)。


Modified: trunk/tools/check-files.sh
==============================================================================
--- trunk/tools/check-files.sh	(original)
+++ trunk/tools/check-files.sh	Sat Oct 11 09:03:09 2008
@@ -90,7 +90,7 @@

      trap "rm -f ${tmp}; exit 1" 0 HUP INT QUIT
      find ${dir} -xdev -type d -name .svn -prune -o -type f $check_arg  
-print | \
-	sort > ${tmp}
+	sort | sed -e 's|^\./||' > ${tmp}
      xargs svn proplist --verbose < ${tmp} |
      awk '
      /Properties on/ {




Geeklogjp-changes メーリングリストの案内
Back to archive index