We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13aed4b commit 44d150bCopy full SHA for 44d150b
umu/umu_run.py
@@ -365,6 +365,12 @@ def build_command(
365
)
366
raise FileNotFoundError(err)
367
368
+ # Configure winetricks to not be prompted for any windows
369
+ if env.get("EXE", "").endswith("winetricks") and opts:
370
+ # The position of arguments matter for winetricks
371
+ # Usage: ./winetricks [options] [command|verb|path-to-verb] ...
372
+ opts = ["-q", *opts]
373
+
374
return (
375
entry_point,
376
"--verb",
0 commit comments