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:
R1kaB3rN 2024-02-12 00:27:30 -08:00
parent f28d170994
commit f73ef0f268
No known key found for this signature in database

View File

@ -39,7 +39,7 @@ example usage:
if sys.argv[1:][0] in opt_args:
return parser.parse_args(sys.argv[1:])
return sys.argv[1:][0]
return " ".join(sys.argv[1:])
def setup_pfx(path: str) -> None: