Created
December 1, 2019 17:04
-
-
Save toots/163867393ff91730eadcde4beddc2926 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
SYSTEM=$1 | |
CMD=$2 | |
ARG=$3 | |
if test "${SYSTEM}" = "mingw"; then | |
wine $CMD $ARG | |
elif test "${SYSTEM}" = "mingw64"; then | |
wine64 $CMD $ARG | |
else | |
$CMD $ARG |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment