Merge pull request #13402 from amenonsen/expandpath

Use CLI.expand_tilde also for the vault --output file
pull/13391/head
Brian Coca 9 years ago
commit 7708661270

@ -250,7 +250,8 @@ class CLI(object):
parser.add_option('--new-vault-password-file', dest='new_vault_password_file',
help="new vault password file for rekey", action="callback", callback=CLI.expand_tilde, type=str)
parser.add_option('--output', default=None, dest='output_file',
help='output file name for encrypt or decrypt; use - for stdout')
help='output file name for encrypt or decrypt; use - for stdout',
action="callback", callback=CLI.expand_tilde, type=str)
if subset_opts:
parser.add_option('-t', '--tags', dest='tags', default='all',

Loading…
Cancel
Save