From f73ef0f26800923bdfc257bc511212a3b4fd33f0 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Mon, 12 Feb 2024 00:27:30 -0800 Subject: [PATCH] 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. --- ulwgl_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ulwgl_run.py b/ulwgl_run.py index 1c12610..4077f39 100755 --- a/ulwgl_run.py +++ b/ulwgl_run.py @@ -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: