mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Update ACE.Server.csproj Added start_server.sh for Linux/macOS systems * Create start_server.sh New start_server.sh for Linux/macOS systems
8 lines
282 B
Bash
8 lines
282 B
Bash
#!/usr/bin/env bash
|
|
cd "$(dirname "$0")"
|
|
if [ ! -f "ACE.Server.dll" ]; then
|
|
echo "please run the copy of this file residing in the build output directory, e.g. ./bin/x64/<Configuration>/net8.0/"
|
|
read -r -p "Press enter to exit..." _
|
|
exit 1
|
|
fi
|
|
exec dotnet ACE.Server.dll
|