mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 17:55:27 +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',
|
eos_overlay_parser.add_argument('--bottle', dest='bottle', action='store',
|
||||||
help='WINE prefix to install the overlay in')
|
help='WINE prefix to install the overlay in')
|
||||||
else:
|
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:
|
else:
|
||||||
eos_overlay_parser.add_argument('--prefix', dest='prefix', action='store', help=argparse.SUPPRESS)
|
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)
|
eos_overlay_parser.add_argument('--app', dest='app', action='store', help=argparse.SUPPRESS)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue