Skip to content

Commit

Permalink
Merge pull request #45 from ckurtz22/master
Browse files Browse the repository at this point in the history
Made default keys file for mounting switch be ~/.switch/prod.keys
  • Loading branch information
ihaveamac authored Jun 17, 2019
2 parents ef321ba + 1b030d1 commit c32a8dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ninfs/mount/nandhac.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def main(prog: str = None, args: list = None):
args = argv[1:]
parser = ArgumentParser(prog=prog, description='Mount Nintendo Switch NAND images.',
parents=(_c.default_argp, _c.readonly_argp, _c.main_args('nand', 'NAND image')))
parser.add_argument('--keys', help='keys text file from biskeydump')
parser.add_argument('--keys', help='keys text file from biskeydump', default=os.path.expanduser("~") + "/.switch/prod.keys")
parser.add_argument('-S', '--split-files', help='treat as part of a split file', action='store_true')

a = parser.parse_args(args)
Expand Down

0 comments on commit c32a8dd

Please sign in to comment.