7 lines
141 B
Bash
7 lines
141 B
Bash
|
#!/bin/bash
|
||
|
# Launch winediscordipcbridge.exe automatically.
|
||
|
|
||
|
echo "wine: $WINE"
|
||
|
echo "prefix: $WINEPREFIX"
|
||
|
$WINE ./winediscordipcbridge.exe
|