Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'bc/portable'
[gitweb.git]
/
git_remote_helpers
/
git
/
importer.py
diff --git
a/git_remote_helpers/git/importer.py
b/git_remote_helpers/git/importer.py
index af2919d92cee77b5e806dfdcb8361187d86e4b0e..70a712729b63047b9760b72d3e2b0a45ff176646 100644
(file)
--- a/
git_remote_helpers/git/importer.py
+++ b/
git_remote_helpers/git/importer.py
@@
-35,4
+35,6
@@
def do_import(self, base):
if os.path.exists(path):
args.append("--import-marks=" + path)
- subprocess.check_call(args)
+ child = subprocess.Popen(args)
+ if child.wait() != 0:
+ raise CalledProcessError