donut-decomp/run-exe.sh

14 lines
369 B
Bash
Raw Permalink Normal View History

2021-08-01 18:25:08 +00:00
#!/bin/sh
set -e
#if [[ $(uname -m) != 'x86_64' ]]; then
# echo "Can currently only run on x86_64"
# exit 1
#fi
#if [[ $OSTYPE == 'darwin' ]]; then
# docker run -it --rm --volume $PWD/build/wine:/home/wineuser/.wine --volume $PWD:$PWD -w $PWD scottyhardy/docker-wine wine "$@"
#else
2021-10-19 12:33:18 +00:00
WINEDEBUG=-all WINEARCH=win32 WINEPREFIX=$HOME/.wine32 wine "$@"
#fiex