VIXL Release 1.10

Refer to the README.md and LICENCE files for details.
diff --git a/tools/git.py b/tools/git.py
index dddaddf..2fca3ed 100644
--- a/tools/git.py
+++ b/tools/git.py
@@ -28,8 +28,8 @@
 import util
 import os.path
 
-def is_git_repository_root():
-  return os.path.isdir('.git')
+def is_git_repository_root(path):
+  return os.path.isdir(os.path.join(path, '.git'))
 
 def get_tracked_files():
   command = 'git ls-tree HEAD -r --full-tree --name-only'