summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1e30c07)
raw | patch | inline | side by side (parent: 1e30c07)
author | Simon Hausmann <hausmann@kde.org> | |
Thu, 8 Feb 2007 14:45:16 +0000 (15:45 +0100) | ||
committer | Simon Hausmann <hausmann@kde.org> | |
Thu, 8 Feb 2007 14:45:16 +0000 (15:45 +0100) |
Signed-off-by: Simon Hausmann <hausmann@kde.org>
contrib/fast-import/p4-fast-export.py | patch | blob | history |
index 36381fbecd97d95867ab3e56e966b97404411680..9f4b16a974d55a2fd5ee5586d079be1fc0b20042 100755 (executable)
sys.stdout.flush()
cnt = cnt + 1
- commit(description)
+ try:
+ commit(description)
+ except:
+ print gitError.read()
+ sys.exit(1)
gitStream.close()
gitOutput.close()
os.popen("git-repo-config p4.depotpath %s" % prefix).read()
+sys.exit(0)