Update 4_server-compile.sh

This commit is contained in:
bashermens
2026-01-10 21:09:47 +01:00
committed by GitHub
parent eefc652982
commit 1c1c5de5b4

View File

@@ -1,5 +1,11 @@
#!/bin/bash
if [[ "$1" == "debug" ]]; then
export CTYPE=RelWithDebInfo
else
export CTYPE=Release
fi
read -p "This will compile server. Are you sure? (Y)es/(N)o: " -n 1 -r
echo " ";
if [[ $REPLY =~ ^[Yy]$ ]];