ModernUO/Run.sh

18 lines
594 B
Bash
Executable file

#!/usr/bin/env bash
if ( pgrep -f ModernUO.dll > /dev/null)
then
echo "________________________________"
echo "| A Server is already running!! "
echo "--------------------------------"
else
echo "________________________________"
echo "| Compiling server files."
echo "--------------------------------"
dotnet publish Projects/Application/Application.csproj -c Release -r linux-x64 --self-contained=false
echo ""
echo ""
echo "________________________________"
echo "| Starting Server...."
echo "--------------------------------"
dotnet ./Distribution/ModernUO.dll
fi