mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
# Description Adds several scripts to make building and running the projects easier outside of an IDE.
12 lines
175 B
Bash
Executable File
12 lines
175 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# make sure to start from script dir
|
|
if [ "$(dirname $0)" != "." ]; then
|
|
cd "$(dirname $0)"
|
|
fi
|
|
|
|
sh -e runQuickServer.sh &
|
|
sh -e runQuickClient.sh
|
|
|
|
exit
|