Revision: 12171
Author:   [email protected]
Date:     Mon Jul 23 04:34:03 2012
Log:      Android test runner: Do not copy files in *.svn folder

Review URL: https://chromiumcodereview.appspot.com/10815050
Patch from Haitao Feng <[email protected]>.
http://code.google.com/p/v8/source/detail?r=12171

Modified:
 /branches/bleeding_edge/tools/android-sync.sh

=======================================
--- /branches/bleeding_edge/tools/android-sync.sh       Wed Jul 18 05:40:13 2012
+++ /branches/bleeding_edge/tools/android-sync.sh       Mon Jul 23 04:34:03 2012
@@ -55,7 +55,7 @@
 function sync_dir {
   local DIR=$1
   echo -n "sync to $ANDROID_V8/$DIR"
-  for FILE in $(find "$HOST_V8/$DIR" -type f); do
+  for FILE in $(find "$HOST_V8/$DIR" -not -path "*.svn*" -type f); do
     local RELATIVE_FILE=${FILE:${#HOST_V8}}
     sync_file "$RELATIVE_FILE"
   done

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to