mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 01:45:28 +00:00
[cli] Fix argument dest for --bottle
This commit is contained in:
parent
0a63b8b007
commit
edadf1c780
|
@ -2660,10 +2660,10 @@ def main():
|
|||
eos_overlay_parser.add_argument('--bottle', dest='bottle', action='store',
|
||||
help='WINE prefix to install the overlay in')
|
||||
else:
|
||||
eos_overlay_parser.add_argument('--bottle', dest='prefix', action='store', help=argparse.SUPPRESS)
|
||||
eos_overlay_parser.add_argument('--bottle', dest='bottle', action='store', help=argparse.SUPPRESS)
|
||||
else:
|
||||
eos_overlay_parser.add_argument('--prefix', dest='prefix', action='store', help=argparse.SUPPRESS)
|
||||
eos_overlay_parser.add_argument('--bottle', dest='prefix', action='store', help=argparse.SUPPRESS)
|
||||
eos_overlay_parser.add_argument('--bottle', dest='bottle', action='store', help=argparse.SUPPRESS)
|
||||
eos_overlay_parser.add_argument('--app', dest='app', action='store', help=argparse.SUPPRESS)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue