diff options
author | Han-Wen Nienhuys <hanwen@google.com> | 2007-05-23 18:49:35 -0300 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@google.com> | 2007-06-08 18:19:16 -0300 |
commit | 1b9a46849a45f2b0f58d6286957316f720a301b6 (patch) | |
tree | c6d0970728d1ee43ea4cde5d75f0647fb3191228 | |
parent | 7530a40ce2006082580865f4db6d32b956ca8dc0 (diff) | |
download | git-1b9a46849a45f2b0f58d6286957316f720a301b6.tar.gz git-1b9a46849a45f2b0f58d6286957316f720a301b6.tar.xz |
print error message when p4 print fails (eg. due to permission problems)
Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
-rwxr-xr-x | contrib/fast-import/git-p4 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index e955ad4f4..35c24c93e 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -702,6 +702,11 @@ class P4Sync(Command): text += filedata[j]['data'] j += 1 + + if not stat.has_key('depotFile'): + sys.stderr.write("p4 print fails with: %s\n" % repr(stat)) + continue + contents[stat['depotFile']] = text for f in files: |