Index: build/copy_test_data_ios.py |
diff --git a/build/copy_test_data_ios.py b/build/copy_test_data_ios.py |
index 51307358355ecdbf078e5e15d624829ea40ed8cf..d785f2675854c69f0a1d77cf7d347f7c6b2e9c40 100755 |
--- a/build/copy_test_data_ios.py |
+++ b/build/copy_test_data_ios.py |
@@ -16,10 +16,9 @@ class WrongNumberOfArgumentsException(Exception): |
def ListFilesForPath(path): |
"""Returns a list of all the files under a given path.""" |
output = [] |
- # Ignore dotfiles and dot directories. |
- # TODO(rohitrao): This will fail to exclude cases where the initial argument |
- # is a relative path that starts with a dot. |
- if os.path.basename(path).startswith('.'): |
+ # Ignore revision control metadata directories. |
+ if (os.path.basename(path).startswith('.git') or |
+ os.path.basename(path).startswith('.svn')): |
return output |
# Files get returned without modification. |