Index: upload.py |
diff --git a/upload.py b/upload.py |
index 1a87ad2ca10a10f4a24f273dee5c299e97799d39..3140908eb198ef409c4af165654c9f6a456b5d2e 100755 |
--- a/upload.py |
+++ b/upload.py |
@@ -1004,7 +1004,8 @@ class GitVCS(VersionControlSystem): |
# the hashes of the base files, so we can upload them along with our diff. |
if self.options.revision: |
extra_args = [self.options.revision] + extra_args |
- gitdiff = RunShell(["git", "diff", "--full-index"] + extra_args) |
+ gitdiff = RunShell(["git", "diff", "--no-ext-diff", "--full-index"] + |
+ extra_args) |
svndiff = [] |
filecount = 0 |
filename = None |