forked from coop-deluxe/sm64coopdx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
MysterD
committed
May 11, 2022
1 parent
780249a
commit 85ad7ed
Showing
4 changed files
with
26 additions
and
18,187 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
if [ $# -eq 0 ]; then | ||
make DEBUG=1 DEVELOPMENT=1 STRICT=1 -j | ||
else | ||
make DEBUG=1 DEVELOPMENT=1 -j | ||
fi | ||
|
||
# find file | ||
FILE=./build/us_pc/sm64.us.f3dex2e.exe | ||
WINPTY=winpty | ||
if [ ! -f "$FILE" ]; then | ||
FILE=./build/us_pc/sm64.us.f3dex2e | ||
WINPTY= | ||
fi | ||
|
||
# no debug, discord | ||
$FILE --discord 2 --configfile sm64config_server.txt & | ||
$FILE --discord 1 --configfile sm64config_client.txt & | ||
exit |
Oops, something went wrong.