donut-decomp/run-exe.sh
Charlotte Delenk d049f2f0d1
__mem.c
2021-10-14 15:18:50 +02:00

14 lines
No EOL
352 B
Bash
Executable file

#!/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
WINEARCH=win32 WINEPREFIX=$HOME/.wine32 wine "$@"
#fi