From 918ff85c1e9d9606e4924a0af9a8ddc2e4db692a Mon Sep 17 00:00:00 2001 From: Conley Owens Date: Tue, 7 Aug 2012 10:44:01 -0700 Subject: [PATCH] `repo manifest`: default to stdout if no "-o" Change-Id: I1b0ff9ed5df6386f0c2a851c6c48d063199fe663 --- subcmds/manifest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/subcmds/manifest.py b/subcmds/manifest.py index 4374a9d0..cd196531 100644 --- a/subcmds/manifest.py +++ b/subcmds/manifest.py @@ -50,6 +50,7 @@ in a Git repository for use during future 'repo init' invocations. help='Save revisions as current HEAD') p.add_option('-o', '--output-file', dest='output_file', + default='-', help='File to save the manifest to', metavar='-|NAME.xml')