ace/Source/ACE.Server/start_server.sh
Galli 2c8124059c
Linux and macOS startup script (#4329)
* Update ACE.Server.csproj

Added start_server.sh for Linux/macOS systems

* Create start_server.sh

New start_server.sh for Linux/macOS systems
2025-07-16 00:34:11 -04:00

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