projects
/
tools
/
git-buildpackage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c3d1f05
)
return non null on failure
author
Guido Guenther
<agx@sigxcpu.org>
Fri, 7 Dec 2007 22:20:27 +0000
(23:20 +0100)
committer
Guido Guenther
<agx@sigxcpu.org>
Fri, 7 Dec 2007 22:20:27 +0000
(23:20 +0100)
git-import-dsc
patch
|
blob
|
history
diff --git
a/git-import-dsc
b/git-import-dsc
index 51ce56a89ede626681cd104a1e55cdd61a808673..37de62d74f219858cee8c0353d857cee58a1bbb0 100755
(executable)
--- a/
git-import-dsc
+++ b/
git-import-dsc
@@
-226,8
+226,9
@@
def main(argv):
ret = 1
os.chdir(dirs['top'])
- if not ret:
- print 'Everything imported under %s' % src.pkg
+ if not ret:
+ print 'Everything imported under %s' % src.pkg
+ return ret
if __name__ == '__main__':
sys.exit(main(sys.argv))