mirror of
https://github.com/tcsenpai/UWINE.git
synced 2025-06-07 03:55:21 +00:00
Fix bug that ignores arguments
- After specifying the executable, all arguments following the first were ignored unless they were escaped to be interpreted as part of the first argument.
This commit is contained in:
parent
f28d170994
commit
f73ef0f268
@ -39,7 +39,7 @@ example usage:
|
|||||||
if sys.argv[1:][0] in opt_args:
|
if sys.argv[1:][0] in opt_args:
|
||||||
return parser.parse_args(sys.argv[1:])
|
return parser.parse_args(sys.argv[1:])
|
||||||
|
|
||||||
return sys.argv[1:][0]
|
return " ".join(sys.argv[1:])
|
||||||
|
|
||||||
|
|
||||||
def setup_pfx(path: str) -> None:
|
def setup_pfx(path: str) -> None:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user