Files
wwdpublic/Scripts/sh/runQuickAll.sh
DEATHB4DEFEAT 790fe7d578 Build/Run Scripts from Parkstation (#6)
# Description

Adds several scripts to make building and running the projects easier
outside of an IDE.
2024-05-18 15:37:54 -07:00

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