summaryrefslogtreecommitdiff
path: root/b4/mbox.py
diff options
context:
space:
mode:
Diffstat (limited to 'b4/mbox.py')
-rw-r--r--b4/mbox.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/b4/mbox.py b/b4/mbox.py
index 3e69a32..85f9fcd 100644
--- a/b4/mbox.py
+++ b/b4/mbox.py
@@ -188,7 +188,8 @@ def mbox_to_am(mboxfile, cmdargs):
if base_commit:
logger.critical(' Base: %s', base_commit)
logger.critical(' git checkout -b %s %s', gitbranch, base_commit)
- logger.critical(' git am %s', am_filename)
+ if cmdargs.outdir != '-':
+ logger.critical(' git am %s', am_filename)
else:
cleanmsg = ''
if topdir is not None:
@@ -224,7 +225,8 @@ def mbox_to_am(mboxfile, cmdargs):
cleanmsg = ' (best guess: %s)' % tag
logger.critical(' Base: not found%s', cleanmsg)
- logger.critical(' git am %s', am_filename)
+ if cmdargs.outdir != '-':
+ logger.critical(' git am %s', am_filename)
am_mbx.close()
if cmdargs.outdir == '-':