summarylogtreecommitdiffstats
path: root/wrapper.sh
diff options
context:
space:
mode:
authorswordfeng2024-01-26 07:54:16 +0000
committerswordfeng2024-01-26 08:01:28 +0000
commitc3e5fb0a1627c1ce5d97feb026d1293443ab1c72 (patch)
treec465c383dcff2de789259484626e3353390b33a8 /wrapper.sh
parentd73a6b4c07d7f86cc3bc4acd6f27e8c4f199ed84 (diff)
downloadaur-qaac-wine.tar.gz
upgrade to 2.81, update wrapper and add simple check
Diffstat (limited to 'wrapper.sh')
-rwxr-xr-xwrapper.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/wrapper.sh b/wrapper.sh
index 3d9580aac517..21c659791cfb 100755
--- a/wrapper.sh
+++ b/wrapper.sh
@@ -1,3 +1,5 @@
#!/bin/sh
+# disable wine error messages by default
+export WINEDEBUG="${WINEDEBUG:=-all}"
program=`basename "$0"`
-/usr/bin/wine "/usr/lib/qaac/${program}64.exe" "$@"
+exec /usr/bin/wine "/usr/lib/qaac/${program}64.exe" "$@"